All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openpdf.renderer.PDFImageParseException Maven / Gradle / Ivy

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