blob: 3d05589b1eddd8a37e950c411825676f62d96ccc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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);
}
}
|