mirror of
https://github.com/hexedtech/jni-toolbox.git
synced 2025-03-14 10:35:31 +01:00
7 lines
124 B
Java
7 lines
124 B
Java
package toolbox;
|
|
|
|
public class CustomException extends Exception {
|
|
public CustomException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|