blob: 032b2ed3a4e0ff80d4b4863845cc8c6f13333ed3 (
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(final String message, final Throwable cause) {
super(message, cause);
}
public PngjBadCrcException(final String message) {
super(message);
}
public PngjBadCrcException(final Throwable cause) {
super(cause);
}
}
|