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

21 lines
430 B
Java
Raw Normal View History

package ar.com.hjg.pngj;
/**
* Exception thrown when reading a PNG.
*/
public class PngjInputException extends PngjException {
2018-09-22 11:17:30 +02:00
private static final long serialVersionUID = 1L;
2018-09-22 11:17:30 +02:00
public PngjInputException(final String message, final Throwable cause) {
super(message, cause);
}
2018-09-22 11:17:30 +02:00
public PngjInputException(final String message) {
super(message);
}
2018-09-22 11:17:30 +02:00
public PngjInputException(final Throwable cause) {
super(cause);
}
}