1 package es.caib.signatura.api;
2
3
4
5
6
7
8
9 public class SignatureCertNotFoundException extends SignatureException
10 {
11 public SignatureCertNotFoundException()
12 {
13 super ("There isn't available certificates");
14 }
15 public SignatureCertNotFoundException(Exception e)
16 {
17 super ("There isn't available certificates", e);
18 }
19
20 public SignatureCertNotFoundException(String message,Throwable e)
21 {
22 super ("There isn't available certificates: "+message,e);
23 }
24
25 public SignatureCertNotFoundException(String message)
26 {
27 super ("There isn't available certificates: "+message);
28 }
29
30 }