0

gradle: разделение на gradle-module's

This commit is contained in:
2021-01-07 04:47:46 +03:00
parent 9a14817ff8
commit 368c495886
28 changed files with 9 additions and 8 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);
}
}