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: /**
11: * This exception is raised when an access is done to the Relation Service and
12: * that one is not registered.
13: *
14: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
15: */
16:
17: public class RelationServiceNotRegisteredException extends
18: RelationException {
19:
20: /**
21: * Default constructor, no message put in exception
22: */
23: public RelationServiceNotRegisteredException() {
24: super ();
25: }
26:
27: /**
28: * Constructor with given message put in exception
29: */
30: public RelationServiceNotRegisteredException(String message) {
31: super(message);
32: }
33: }
|