01: /*
02: * BuildException.java
03: *
04: * Created on 12 May 2003, 12:28
05: */
06:
07: package com.jofti.exception;
08:
09: /**
10: *
11: * @author xenephon (xenephon@jofti.com)
12: */
13: public class JoftiException extends java.lang.Exception {
14:
15: /**
16: *
17: */
18: private static final long serialVersionUID = 1330233914487413239L;
19:
20: /**
21: * Creates a new instance of <code>JoftiException</code> without detail message.
22: */
23: public JoftiException() {
24: }
25:
26: /**
27: * Constructs an instance of <code>JoftiException</code> with the specified detail message.
28: * @param msg the detail message.
29: */
30: public JoftiException(String msg) {
31: super (msg);
32: }
33:
34: public JoftiException(String msg, Throwable error) {
35: super (msg, error);
36: }
37:
38: public JoftiException(Throwable error) {
39: super(error);
40: }
41: }
|