1 package es.caib.signatura.api;
2
3 /**
4 * There isn't available certificates for the user.
5 *
6 * @author Jesús Reyes
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 }