WarpPI/teavm/src/main/java/ar/com/hjg/pngj/PngjExceptionInternal.java

25 lines
548 B
Java
Raw Normal View History

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