blob: 97e24fc73b79c7de390d1b3de6ab935806ec3792 (
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(String message, Throwable cause) {
super(message, cause);
}
public PngjException(String message) {
super(message);
}
public PngjException(Throwable cause) {
super(cause);
}
}
|