diff options
author | zaaarf <zaaarf@proton.me> | 2023-03-13 13:03:49 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-03-13 13:03:49 +0100 |
commit | 6e2ea19ab48987e01543b6db188f8e5ce3d1eeb9 (patch) | |
tree | 4c3970735dd7fa82d4358eb3b744a7d2de21755c /src/main/java/ftbsc/lll/exceptions/InvalidResourceException.java | |
parent | df3590d097e28309f7ed2dc3cc3d8413a9f56b49 (diff) |
feat: may now pass local files as mappings
Diffstat (limited to 'src/main/java/ftbsc/lll/exceptions/InvalidResourceException.java')
-rw-r--r-- | src/main/java/ftbsc/lll/exceptions/InvalidResourceException.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/ftbsc/lll/exceptions/InvalidResourceException.java b/src/main/java/ftbsc/lll/exceptions/InvalidResourceException.java new file mode 100644 index 0000000..dd75a08 --- /dev/null +++ b/src/main/java/ftbsc/lll/exceptions/InvalidResourceException.java @@ -0,0 +1,22 @@ +package ftbsc.lll.exceptions; + +/** + * Thrown when a resource passed as an argument is not found. + */ +public class InvalidResourceException extends RuntimeException { + + /** + * Empty constructor, used when the provided resource exists but is empty. + */ + public InvalidResourceException() { + super("The specified resource was empty!"); + } + + /** + * Named constructor, used when the specified resource doesn't exist. + * @param name the resource name + */ + public InvalidResourceException(String name) { + super("Specified resource " + name + " was not found!"); + } +} |