Blame view

circus/src/circusRefine/gui/ChangeFormatException.java 701 Bytes
8d0dc533f   Madiel de Souza Conserva Filho   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  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);
  	}
  }