mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-22 10:44:51 +01:00
fix: epic printf fail
This commit is contained in:
parent
6a06713210
commit
6d1d648af4
1 changed files with 1 additions and 1 deletions
|
@ -10,6 +10,6 @@ public class TargetNotFoundException extends RuntimeException {
|
||||||
* @param stub the stub's name (and descriptor possibly)
|
* @param stub the stub's name (and descriptor possibly)
|
||||||
*/
|
*/
|
||||||
public TargetNotFoundException(String stub) {
|
public TargetNotFoundException(String stub) {
|
||||||
super(String.format("Could not find member corresponding to stub: %s."));
|
super(String.format("Could not find member corresponding to stub: %s.", stub));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue