package circusRefine.gui; import circusRefine.util.CRefineException; /** * Classe de excessao disparada quando é gerado algum erro * na mudanca Unicode\Latex * @author Alessandro * */ public class ChangeFormatException extends CRefineException { /** * */ private static final long serialVersionUID = 1L; /** Código para a mensagem*/ private final static String MESSAGE_FOR_USER_CODE = "COD0632"; private final static String CODETITLE_FOR_USER_CODE = "COD0633"; public ChangeFormatException(String msg, Exception cause) { super( msg , cause , ChangeFormatException.MESSAGE_FOR_USER_CODE ); this.setTitleCode(CODETITLE_FOR_USER_CODE); } }