WarpPI/desktop/src/main/java/ar/com/hjg/pngj/chunks/PngBadCharsetException.java

21 lines
421 B
Java
Raw Normal View History

package ar.com.hjg.pngj.chunks;
import ar.com.hjg.pngj.PngjException;
public class PngBadCharsetException extends PngjException {
2018-08-28 02:39:41 +02:00
private static final long serialVersionUID = 1L;
2018-08-28 02:39:41 +02:00
public PngBadCharsetException(String message, Throwable cause) {
super(message, cause);
}
2018-08-28 02:39:41 +02:00
public PngBadCharsetException(String message) {
super(message);
}
2018-08-28 02:39:41 +02:00
public PngBadCharsetException(Throwable cause) {
super(cause);
}
}