01: package org.jicengine;
02:
03: /**
04: *
05: *
06: *
07: *
08: * @author .timo
09: *
10: */
11:
12: public class JICException extends Exception {
13:
14: public JICException(String message) {
15: super (message);
16: }
17:
18: public JICException(String message, Throwable cause) {
19: super (message, cause);
20: }
21:
22: public JICException(Throwable cause) {
23: super(cause);
24: }
25: }
|