blob: 4a45cb5bfc9dc05c296ee89bcca1a7f10ca830d7 (
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);
}
}
|