summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java2
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));
}
}