/** * */ package at.gv.egiz.pdfas.exceptions.framework; import at.knowcenter.wag.egov.egiz.exceptions.PresentableException; /** * Exceptions thrown by Correctors. * * @author wprinz * */ public class CorrectorException extends PresentableException { /** * SVUID. */ private static final long serialVersionUID = -8646964226476111797L; public CorrectorException(int errorCode, String message, Throwable cause) { super(errorCode, message, cause); } public CorrectorException(int errorCode, String message) { super(errorCode, message); } public CorrectorException(int errorCode, Throwable cause) { super(errorCode, cause); } }