org.verapdf.parser.postscript.PostScriptException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parser Show documentation
Show all versions of parser Show documentation
veraPDF tools for parsing, modifying and creating PDF documents.
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);
}
}