WarpPI/teavm/src/main/java/ar/com/hjg/pngj/PngjExceptionInternal.java
2018-09-22 11:17:30 +02:00

25 lines
548 B
Java

package ar.com.hjg.pngj;
/**
* Exception for anomalous internal problems (sort of asserts) that point to
* some issue with the library
*
* @author Hernan J Gonzalez
*
*/
public class PngjExceptionInternal extends RuntimeException {
private static final long serialVersionUID = 1L;
public PngjExceptionInternal(final String message, final Throwable cause) {
super(message, cause);
}
public PngjExceptionInternal(final String message) {
super(message);
}
public PngjExceptionInternal(final Throwable cause) {
super(cause);
}
}