WarpPI/teavm/src/main/java/ar/com/hjg/pngj/PngjUnsupportedException.java
2018-09-22 11:17:30 +02:00

26 lines
574 B
Java

package ar.com.hjg.pngj;
/**
* Exception thrown because of some valid feature of PNG standard that this
* library does not support.
*/
public class PngjUnsupportedException extends RuntimeException {
private static final long serialVersionUID = 1L;
public PngjUnsupportedException() {
super();
}
public PngjUnsupportedException(final String message, final Throwable cause) {
super(message, cause);
}
public PngjUnsupportedException(final String message) {
super(message);
}
public PngjUnsupportedException(final Throwable cause) {
super(cause);
}
}