codemp/dist/java/src/mp/code/exceptions/CodeMPException.java

11 lines
238 B
Java
Raw Normal View History

2024-08-06 23:30:00 +02:00
package mp.code.exceptions;
/**
* A generic class for all our exceptions coming through the JNI from the library.
*/
public abstract class CodeMPException extends Exception {
protected CodeMPException(String msg) {
2024-08-06 23:30:00 +02:00
super(msg);
}
}