View Javadoc

1   package org.xmlfield.core.exception;
2   
3   /**
4    * Technical exception
5    * 
6    * @author Guillaume Mary <guillaume.mary@capgemini.com>
7    * 
8    */
9   public class XmlFieldTechnicalException extends RuntimeException {
10  
11      /**
12       * Generated serial version UID
13       */
14      private static final long serialVersionUID = -2132491428040189255L;
15  
16      public XmlFieldTechnicalException() {
17          super();
18      }
19  
20      public XmlFieldTechnicalException(String message) {
21          super(message);
22      }
23  
24      public XmlFieldTechnicalException(String message, Throwable cause) {
25          super(message, cause);
26      }
27  
28      public XmlFieldTechnicalException(Throwable cause) {
29          super(cause);
30      }
31  
32  }