View Javadoc

1   package es.caib.signatura.api;
2   
3   /** 
4    * Error verifying the certificate.
5    * 
6    * @author Pau Carré Cardona
7    * @version 1.0
8    */
9   
10  public class CertificateVerifyException extends SignatureException 
11  {
12  	public CertificateVerifyException(Throwable cause)
13  	{
14  		super ("Could not perform the validation process of the certificate: ", cause);
15  	}
16  }