source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/KeystoreException.java @ c14b8d2

Last change on this file since c14b8d2 was 288126d, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Manejo de repositorio de certificados y firma con pkcs7

  • Property mode set to 100644
File size: 589 bytes
Line 
1package ve.gob.cenditel.tibisaymovil;
2
3/**
4 * Error managing the certificate and private key store.
5 *
6 * @author José M. Prieto (jmprieto@emergya.com)
7 */
8public class KeystoreException extends TibisayMovilException {
9
10    private static final long serialVersionUID = 8570856876444245574L;
11
12    public KeystoreException() {}
13
14    public KeystoreException(String message) {
15
16        super(message);
17    }
18
19    public KeystoreException(String message, Throwable cause) {
20
21        super(message, cause);
22    }
23
24    public KeystoreException(Throwable cause) {
25
26        super(cause);
27    }
28}
Note: See TracBrowser for help on using the repository browser.