source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/TibisayMovilException.java @ 37c4d43

Last change on this file since 37c4d43 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: 597 bytes
Line 
1package ve.gob.cenditel.tibisaymovil;
2
3/**
4 * Root of the exception hierarchy for the application.
5 *
6 * @author José M. Prieto (jmprieto@emergya.com)
7 */
8public class TibisayMovilException extends Exception {
9
10    private static final long serialVersionUID = -3920468465150267613L;
11
12    public TibisayMovilException() {}
13
14    public TibisayMovilException(String message) {
15
16        super(message);
17    }
18
19    public TibisayMovilException(String message, Throwable cause) {
20
21        super(message, cause);
22    }
23
24    public TibisayMovilException(Throwable cause) {
25
26        super(cause);
27    }
28}
Note: See TracBrowser for help on using the repository browser.