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

br.com.swconsultoria.certificado.exception.CertificadoException Maven / Gradle / Ivy

There is a newer version: 3.8
Show newest version
package br.com.swconsultoria.certificado.exception;

/**
 * Exceção a ser lançada na ocorrência de falhas provenientes do Certificado.
 *
 * @author Samuel Oliveira - [email protected] - www.swconsultoria.com.br
 */
@SuppressWarnings("WeakerAccess")
public class CertificadoException extends Exception {

	private String message;
	
	/**
	 * Construtor da classe.
	 * 
	 * @param e
	 */
	public CertificadoException(Throwable e) {
		super(e);
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy