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