KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jicengine > JICException


1 package org.jicengine;
2
3 /**
4  *
5  *
6  *
7  *
8  * @author .timo
9  *
10  */

11
12 public class JICException extends Exception JavaDoc {
13
14     public JICException(String JavaDoc message)
15     {
16         super(message);
17     }
18
19     public JICException(String JavaDoc message, Throwable JavaDoc cause)
20     {
21         super(message, cause);
22     }
23
24     public JICException(Throwable JavaDoc cause)
25     {
26         super(cause);
27     }
28 }
Popular Tags