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

26 lines
550 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(String message, Throwable cause) {
super(message, cause);
}
public PngjUnsupportedException(String message) {
super(message);
}
public PngjUnsupportedException(Throwable cause) {
super(cause);
}
}