View Javadoc

1   package es.caib.signatura.api;
2   
3   /** 
4    * Error at time stamping process.
5    * 
6    * @author Jesús Reyes
7    * @version 1.0
8    */
9   
10  public class SignatureTimestampException extends SignatureException 
11  {
12    public SignatureTimestampException(Throwable cause)
13    {
14      super("Unable to get the signature timestamp.", cause);
15    }
16  
17    public SignatureTimestampException(String msg, Throwable cause)
18    {
19      super(msg, cause);
20    }
21  
22    public SignatureTimestampException(String msg)
23    {
24      super(msg);
25    }
26  }