jni-toolbox/src/test/java/toolbox/CustomException.java

8 lines
124 B
Java
Raw Normal View History

package toolbox;
public class CustomException extends Exception {
public CustomException(String msg) {
super(msg);
}
}