KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > relation > InvalidRelationServiceException


1 /*
2  * @(#)InvalidRelationServiceException.java 1.15 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.management.relation;
9
10 /**
11  * This exception is raised when an invalid Relation Service is provided.
12  *
13  * @since 1.5
14  */

15 public class InvalidRelationServiceException extends RelationException JavaDoc {
16
17     /* Serial version */
18     private static final long serialVersionUID = 3400722103759507559L;
19
20     /**
21      * Default constructor, no message put in exception.
22      */

23     public InvalidRelationServiceException() {
24     super();
25     }
26
27     /**
28      * Constructor with given message put in exception.
29      *
30      * @param message the detail message.
31      */

32     public InvalidRelationServiceException(String JavaDoc message) {
33     super(message);
34     }
35 }
36
Popular Tags