br.com.swconsultoria.nfe.exception.NfeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-nfe Show documentation
Show all versions of java-nfe Show documentation
Api java para consumo do webService de nota fiscal eletronica
package br.com.swconsultoria.nfe.exception;
/**
* Exceção a ser lançada na ocorrência de falhas provenientes da Nota Fiscal Eletronica.
*
* @author Samuel Oliveira - [email protected] - www.swconsultoria.com.br
*/
public class NfeException extends Exception {
private static final long serialVersionUID = -5054900660251852366L;
String message;
/**
* Construtor da classe.
*
* @param e
*/
public NfeException(Throwable e) {
super(e);
}
/**
* Construtor da classe.
*
* @param message
*/
public NfeException(String message) {
this((Throwable) null);
this.message = message;
}
/**
* Construtor da classe.
*
* @param message
* @param cause
*/
public NfeException(String message, Throwable cause) {
this(cause);
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;
}
}