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

21 lines
424 B
Java

package ar.com.hjg.pngj;
/**
* Generic exception for this library. It's a RuntimeException (unchecked)
*/
public class PngjException extends RuntimeException {
private static final long serialVersionUID = 1L;
public PngjException(String message, Throwable cause) {
super(message, cause);
}
public PngjException(String message) {
super(message);
}
public PngjException(Throwable cause) {
super(cause);
}
}