View Javadoc

1   package es.caib.signatura.api;
2   
3   /** 
4    * Internal error signing data.
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 at signing process.", 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  }