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

21 lines
406 B
Java

package ar.com.hjg.pngj;
/**
* Exception thrown when reading a PNG.
*/
public class PngjInputException extends PngjException {
private static final long serialVersionUID = 1L;
public PngjInputException(String message, Throwable cause) {
super(message, cause);
}
public PngjInputException(String message) {
super(message);
}
public PngjInputException(Throwable cause) {
super(cause);
}
}