mirror of
https://github.com/hexedtech/jni-toolbox.git
synced 2025-03-15 02:55:32 +01:00
8 lines
124 B
Java
8 lines
124 B
Java
|
package toolbox;
|
||
|
|
||
|
public class CustomException extends Exception {
|
||
|
public CustomException(String msg) {
|
||
|
super(msg);
|
||
|
}
|
||
|
}
|