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

25 lines
526 B
Java
Raw Normal View History

package ar.com.hjg.pngj;
/**
2018-08-28 02:39:41 +02:00
* 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 {
2018-08-28 02:39:41 +02:00
private static final long serialVersionUID = 1L;
2018-08-28 02:39:41 +02:00
public PngjExceptionInternal(String message, Throwable cause) {
super(message, cause);
}
2018-08-28 02:39:41 +02:00
public PngjExceptionInternal(String message) {
super(message);
}
2018-08-28 02:39:41 +02:00
public PngjExceptionInternal(Throwable cause) {
super(cause);
}
}