Blame view
circus/src/circusRefine/gui/GenerateDocException.java
724 Bytes
8d0dc533f
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
package circusRefine.gui; import net.sourceforge.czt.circuspatt.util.CircusLaw; import circusRefine.core.crules.CircusLawApplicationException; import circusRefine.util.CRefineException; /** * Classe de excessao disparada quando é utilizado * o gerador de documento e o mesmo apresenta algum erro * @author Alessandro * */ public class GenerateDocException extends CRefineException { private static final long serialVersionUID = 2987351780847807726L; /** Código para a mensagem*/ private final static String MESSAGE_FOR_USER_CODE = "COD0599"; public GenerateDocException(String msg, Exception cause) { super( msg , cause , GenerateDocException.MESSAGE_FOR_USER_CODE ); } } |