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

21 lines
421 B
Java

package ar.com.hjg.pngj.chunks;
import ar.com.hjg.pngj.PngjException;
public class PngBadCharsetException extends PngjException {
private static final long serialVersionUID = 1L;
public PngBadCharsetException(String message, Throwable cause) {
super(message, cause);
}
public PngBadCharsetException(String message) {
super(message);
}
public PngBadCharsetException(Throwable cause) {
super(cause);
}
}