/** * */ package at.gv.egiz.pdfas.exceptions.framework; import at.knowcenter.wag.egov.egiz.exceptions.PresentableException; /** * Exception thrown by the Signators. * @author wprinz */ public class SignatorException extends PresentableException { /** * SVUID. */ private static final long serialVersionUID = 5051232904560832089L; public SignatorException(int error_code, String message, Throwable cause) { super(error_code, message, cause); } public SignatorException(int error_code, String message) { super(error_code, message); } public SignatorException(int error_code, Throwable cause) { super(error_code, cause); } public SignatorException(PresentableException pe) { super(pe.getErrorCode(), pe); } }