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 invalid Relation Service is provided.
12: *
13: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
14: */
15:
16: public class InvalidRelationServiceException extends RelationException {
17:
18: /**
19: * Default constructor, no message put in exception
20: */
21: public InvalidRelationServiceException() {
22: super ();
23: }
24:
25: /**
26: * Constructor with given message put in exception
27: */
28: public InvalidRelationServiceException(String message) {
29: super(message);
30: }
31: }
|