summaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java')
-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 5be3d77..1b63ea5 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("Could not find member corresponding to stub: " + stub);
+ super(String.format("Could not find member corresponding to stub: %s."));
}
}