01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.org
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package javax.management.relation;
09:
10: import javax.management.JMException;
11:
12: /**
13: * This class is the superclass of any exception which can be raised during
14: * relation management.
15: *
16: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
17: */
18:
19: public class RelationException extends JMException {
20:
21: /**
22: * Default constructor, no message put in exception
23: */
24: public RelationException() {
25: super ();
26: }
27:
28: /**
29: * Constructor with given message put in exception
30: */
31: public RelationException(String message) {
32: super(message);
33: }
34: }
|