KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)RelationException.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 import javax.management.JMException JavaDoc;
11
12 /**
13  * This class is the superclass of any exception which can be raised during
14  * relation management.
15  *
16  * @since 1.5
17  */

18 public class RelationException extends JMException JavaDoc {
19
20     /* Serial version */
21     private static final long serialVersionUID = 5434016005679159613L;
22
23     /**
24      * Default constructor, no message put in exception.
25      */

26     public RelationException() {
27     super();
28     }
29
30     /**
31      * Constructor with given message put in exception.
32      *
33      * @param message the detail message.
34      */

35     public RelationException(String JavaDoc message) {
36     super(message);
37     }
38 }
39
Popular Tags