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

org.verapdf.parser.postscript.PostScriptException Maven / Gradle / Ivy

There is a newer version: 1.26.1
Show newest version
package org.verapdf.parser.postscript;

/**
 * Exception that occurs during PostScript program parsing.
 *
 * @author Sergey Shemyakov
 */
public class PostScriptException extends Exception {

    public PostScriptException() {
    }

    public PostScriptException(String message) {
        super(message);
    }

    public PostScriptException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy