br.com.swconsultoria.certificado.exception.CertificadoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java_certificado Show documentation
Show all versions of java_certificado Show documentation
Api java para gerenciamento de certificados digitais
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