diff options
author | zaaarf <zaaarf@proton.me> | 2023-03-18 17:24:43 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-03-18 17:24:43 +0100 |
commit | 344e66061b31a83f7ace2ab887e80f782f560297 (patch) | |
tree | b8841cdf15a97376cc75206818a989b0e1918e36 /src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java | |
parent | 8695612c58141b1d5e0ee274027ebbd2050de6f8 (diff) | |
parent | 909f5cfa07464f35814da1686b0ac1a6c3ea03dd (diff) |
Merge branch 'version3' into dev
Diffstat (limited to 'src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java')
-rw-r--r-- | src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java b/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java new file mode 100644 index 0000000..c82e0fc --- /dev/null +++ b/src/main/java/ftbsc/lll/exceptions/TargetNotFoundException.java @@ -0,0 +1,15 @@ +package ftbsc.lll.exceptions; + +/** + * Thrown upon failure to find an existing method from a stub. + */ +public class TargetNotFoundException extends RuntimeException { + + /** + * Constructs a new target not found exception for the specified method stub. + * @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)); + } +} |