01: /*
02: * JFox - The most lightweight Java EE Application Server!
03: * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.
04: *
05: * JFox is licenced and re-distributable under GNU LGPL.
06: */
07: package org.jfox.framework.component;
08:
09: import org.jfox.framework.BaseException;
10:
11: /**
12: * @author <a href="mailto:jfox.young@gmail.com">Young Yang</a>
13: */
14: public class ComponentNotFoundException extends BaseException {
15:
16: public ComponentNotFoundException() {
17: }
18:
19: public ComponentNotFoundException(String message) {
20: super (message);
21: }
22:
23: public ComponentNotFoundException(String message, Throwable cause) {
24: super (message, cause);
25: }
26:
27: public static void main(String[] args) {
28:
29: }
30: }
|