View Javadoc

1   package es.caib.signatura.api;
2   
3   /** 
4    * Error durante el proceso de firma
5    * 
6    * @author Jesús Reyes
7    * @version 1.0
8    */
9   
10  
11  public class SignatureSignException extends SignatureException 
12  {
13    public SignatureSignException(Throwable cause)
14    {
15      super("Error al realizar el proceso de firma", cause);
16    }
17    public SignatureSignException(String msg, Throwable cause)
18    {
19      super(msg, cause);
20    }
21  
22    public SignatureSignException(String msg)
23    {
24      super(msg);
25    }
26  }