All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.swconsultoria.efd.icms.exception.EfdException Maven / Gradle / Ivy

The newest version!
package br.com.swconsultoria.efd.icms.exception;

/**
 * Exceção a ser lançada na ocorrência de falhas provenientes do EFD.
 * 
 * @author Samuel Oliveira
 */
public class EfdException extends Exception {

	private static final long serialVersionUID = 5794103247381778873L;
	
	String message;
	
	/**
	 * Construtor da classe.
	 * 
	 * @param e
	 */
	public EfdException(Throwable e) {
		super(e);
	}

	
	/**
	 * Construtor da classe.
	 * 
	 * @param code
	 */
	public EfdException(String message) {
		this((Throwable) null);
		this.message = message;
	}

	/**
	 * @return the message
	 */
	public String getMessage() {
		return message;
	}

	/**
	 * @param message the message to set
	 */
	public void setMessage(String message) {
		this.message = message;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy