source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/DocumentWritingException.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: 514 bytes
Line 
1package ve.gob.cenditel.tibisaymovil;
2
3public class DocumentWritingException extends TibisayMovilException {
4
5
6        private static final long serialVersionUID = -1449068979632250292L;
7
8                public DocumentWritingException() {}
9
10            public DocumentWritingException(String message) {
11
12                super(message);
13            }
14
15            public DocumentWritingException(String message, Throwable cause) {
16
17                super(message, cause);
18            }
19
20            public DocumentWritingException(Throwable cause) {
21
22                super(cause);
23            }
24        }
25
Note: See TracBrowser for help on using the repository browser.