blob: 4e9cdc9507d347ced154c87dcdbac6b194c236b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package jogamp.opengl.util.pngj;
/**
* Exception thrown by writing process
*/
public class PngjOutputException extends PngjException {
private static final long serialVersionUID = 1L;
public PngjOutputException(final String message, final Throwable cause) {
super(message, cause);
}
public PngjOutputException(final String message) {
super(message);
}
public PngjOutputException(final Throwable cause) {
super(cause);
}
}
|