diff options
author | zaaarf <zaaarf@proton.me> | 2023-03-16 15:55:34 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-03-16 15:55:34 +0100 |
commit | 6d1d648af437deaab29976c32a77c6cb7a2e5e30 (patch) | |
tree | 24fc009324eadbb117a20f10ce790571d7309c79 /src | |
parent | 6a067132105964d6367885ba967f6ea33e4fd65a (diff) |
fix: epic printf fail
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java b/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java index 1b63ea5..c82e0fc 100644 --- a/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java +++ b/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java @@ -10,6 +10,6 @@ public class TargetNotFoundException extends RuntimeException { * @param stub the stub's name (and descriptor possibly) */ 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)); } } |