View Javadoc

1   package es.caib.signatura.api;
2   
3   /** 
4    * There isn't any signature provider installed.
5    * 
6    * @author Jesús Reyes
7    * @version 1.0
8    */
9   
10  public class SignatureProviderException extends SignatureException 
11  {
12    public SignatureProviderException()
13    {
14      super("Unable to access to the signature provider.");
15    }
16  
17    public SignatureProviderException(String msg)
18    {
19      super(msg);
20    }
21  
22    public SignatureProviderException(Throwable parent)
23    {
24      super("Unable to access to the signature provider.", parent);
25    }
26  
27    public SignatureProviderException(String msg, Throwable parent)
28    {
29      super(msg, parent);
30    }
31  }