KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > yan > InternalException


1 package jfun.yan;
2
3 /**
4  * Represents any exception that's used internally by the framework
5  * and should not be wrapped.
6  * <p>
7  * @author Ben Yu
8  * Dec 13, 2005 5:54:50 PM
9  */

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