
ar.com.hjg.pngj.PngjBadCrcException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pngj Show documentation
Show all versions of pngj Show documentation
Pure Java library for efficient PNG encoding/decoding
The newest version!
package ar.com.hjg.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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy