1 package es.caib.signatura.api;
2
3
4
5
6
7
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 }