blob: 3b74f862fa82f6b7e0b1ac4cabafac2c966d2d85 (
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 bad CRC check
*/
public class PngjBadCrcException extends PngjInputException {
private static final long serialVersionUID = 1L;
public PngjBadCrcException(String message, Throwable cause) {
super(message, cause);
}
public PngjBadCrcException(String message) {
super(message);
}
public PngjBadCrcException(Throwable cause) {
super(cause);
}
}
|