WarpPI/src/teavm-specific/java/ar/com/hjg/pngj/PngjOutputException.java
2018-09-02 12:09:59 +02:00

21 lines
422 B
Java

package ar.com.hjg.pngj;
/**
* Exception thrown by writing process
*/
public class PngjOutputException extends PngjException {
private static final long serialVersionUID = 1L;
public PngjOutputException(String message, Throwable cause) {
super(message, cause);
}
public PngjOutputException(String message) {
super(message);
}
public PngjOutputException(Throwable cause) {
super(cause);
}
}