blob: 5cc36b99a4ef7aa9337923fc14495d3e64ca4c06 (
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 reading process
*/
public class PngjInputException extends PngjException {
private static final long serialVersionUID = 1L;
public PngjInputException(String message, Throwable cause) {
super(message, cause);
}
public PngjInputException(String message) {
super(message);
}
public PngjInputException(Throwable cause) {
super(cause);
}
}
|