All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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(final String message, final Throwable cause) {
		super(message, cause);
	}

	public PngjInputException(final String message) {
		super(message);
	}

	public PngjInputException(final Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy