
org.openpdf.renderer.PDFImageParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpdf-renderer Show documentation
Show all versions of openpdf-renderer Show documentation
PDF renderer implementation supporting the subset of PDF 1.4 specification.
The newest version!
package org.openpdf.renderer;
import java.io.IOException;
/**
* an exception class for recording errors when parsing an PDFImage
* @author Katja Sondermann
*/
public class PDFImageParseException extends IOException {
public PDFImageParseException(String msg) {
super(msg);
}
public PDFImageParseException(String msg, Throwable cause) {
this(msg);
initCause(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy