1 package es.caib.signatura.impl;
2
3 public class CertificateProviderException extends Exception {
4
5
6
7
8 private static final long serialVersionUID = -3683106473587709876L;
9
10 public CertificateProviderException() {
11 super();
12 }
13
14 public CertificateProviderException(String s) {
15 super(s);
16 }
17
18 public CertificateProviderException(String message, Throwable cause) {
19 super(message, cause);
20 }
21
22 public CertificateProviderException(Throwable cause) {
23 super(cause);
24 }
25
26 }