gradle: разделение на gradle-module's
This commit is contained in:
13
tools/src/main/java/ghast/assets/AssetsException.java
Normal file
13
tools/src/main/java/ghast/assets/AssetsException.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user