aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/util/pngj/PngjExceptionInternal.java
blob: 5da70de7b656b6320c92e308b8efef30e1199b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package jogamp.opengl.util.pngj;

/**
 * Exception for anomalous internal problems (sort of asserts) that point to
 * some issue with the library
 *
 * @author Hernan J Gonzalez
 *
 */
public class PngjExceptionInternal extends RuntimeException {
	private static final long serialVersionUID = 1L;

	public PngjExceptionInternal(String message, Throwable cause) {
		super(message, cause);
	}

	public PngjExceptionInternal(String message) {
		super(message);
	}

	public PngjExceptionInternal(Throwable cause) {
		super(cause);
	}
}