/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.impl.idp.process; /** * Exception thrown in case of error parsing a process definition. * * @author tknall * */ public class ProcessDefinitionParserException extends Exception { private static final long serialVersionUID = 1L; /** * Creates a new parser exception providing a {@code message} describing the reason and the {@code cause}. * * @param message * The message. * @param cause * The cause. */ public ProcessDefinitionParserException(String message, Throwable cause) { super(message, cause); } /** * Creates a new parser exception providing a {@code message} describing the reason. * * @param message * The message. */ public ProcessDefinitionParserException(String message) { super(message); } }