diff options
author | zaaarf <zaaarf@proton.me> | 2023-03-25 17:17:14 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-03-25 17:17:14 +0100 |
commit | 193db6bf7b5cc767ff88527fc20ac52e6bb7d16c (patch) | |
tree | 25c9548dca4222325b822114e19301a6fbe15805 /src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java | |
parent | 597fda2362e8261d6c617da7baef2dbd75d6d0d8 (diff) |
feat: initial untested draft of version 0.5.0 compatible with lillero 0.4
Diffstat (limited to 'src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java')
-rw-r--r-- | src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java b/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java index c82e0fc..45819bf 100644 --- a/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java +++ b/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java @@ -7,9 +7,10 @@ public class TargetNotFoundException extends RuntimeException { /** * Constructs a new target not found exception for the specified method stub. + * @param type the type of element being sought (class, method, etc.) * @param stub the stub's name (and descriptor possibly) */ - public TargetNotFoundException(String stub) { - super(String.format("Could not find member corresponding to stub: %s.", stub)); + public TargetNotFoundException(String type, String stub) { + super(String.format("Could not find target %s %s.", type, stub)); } } |