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

br.com.esec.icpm.libs.signature.exceptions.SignatureException Maven / Gradle / Ivy

Go to download

This library is used to make integration with Certillion server, so our Clients can easily ask for signatures or generate certificates.

There is a newer version: 1.2.0
Show newest version
package br.com.esec.icpm.libs.signature.exceptions;

public class SignatureException extends Exception {

	private static final long serialVersionUID = 5464491471427277130L;

	public SignatureException(int statusCode, String statusMessage) {
		super("The signature return with status " + statusMessage + " (" + statusCode + ").");
	}
	
	public SignatureException(long transactionId, int statusCode, String statusMessage) {
		super("The signature '" + transactionId + "' return with status " + statusMessage + " (" + statusCode + ").");
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy