package jogamp.opengl.util.pngj; /** * Generic exception * * @author Hernan J Gonzalez * */ public class PngjException extends RuntimeException { private static final long serialVersionUID = 1L; public PngjException(final String message, final Throwable cause) { super(message, cause); } public PngjException(final String message) { super(message); } public PngjException(final Throwable cause) { super(cause); } }