0

move AssetsManager to another package

This commit is contained in:
2021-01-02 03:01:28 +03:00
parent c513d6990a
commit 0165a7d424
3 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
package ghast.assets;
public class AssetsException extends RuntimeException {
public AssetsException(String message) {
super(message);
}
public AssetsException(String message, Throwable cause) {
super(message, cause);
}
}