source: murachi/murachi/src/main/java/ve/gob/cenditel/murachi/MurachiException.java @ 83a7c4e

Last change on this file since 83a7c4e was 83a7c4e, checked in by antonioaraujob <antonioaraujob@…>, 9 years ago

Agregadas clases MurachiExceptionHandler? y MurachiException? para excepciones. Se inicia el proceso de captura de excepciones.

  • Property mode set to 100644
File size: 455 bytes
Line 
1package ve.gob.cenditel.murachi;
2
3import java.io.Serializable;
4
5/**
6 * Clase que abstrae una excepcion del servicio Murachi
7 * @author aaraujo
8 *
9 */
10public class MurachiException extends Exception implements Serializable
11{
12        private static final long serialVersionUID = 1L;
13
14        public MurachiException()
15        {
16                super();
17        }
18       
19        public MurachiException(String msg)
20        {
21                super(msg);
22        }
23       
24        public MurachiException(String msg, Exception e)
25        {
26                super(msg, e);
27        }
28}
Note: See TracBrowser for help on using the repository browser.