jogamp.opengl.util.pngj.PngjInputException Maven / Gradle / Ivy
package jogamp.opengl.util.pngj;
/**
* Exception thrown by reading process
*/
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);
}
}