KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > openmbean > OpenDataException


1 /*
2  * @(#)OpenDataException.java 3.17 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
9 package javax.management.openmbean;
10
11
12 // java import
13
//
14
import java.io.Serializable JavaDoc;
15
16
17 // jmx import
18
//
19
import javax.management.JMException JavaDoc;
20
21
22 /**
23  * This checked exception is thrown when an <i>open type</i>, an <i>open data</i> or an <i>open MBean metadata info</i> instance
24  * could not be constructed because one or more validity constraints were not met.
25  *
26  * @version 3.17 03/12/19
27  * @author Sun Microsystems, Inc.
28  *
29  * @since 1.5
30  * @since.unbundled JMX 1.1
31  */

32 public class OpenDataException
33     extends JMException JavaDoc
34     implements Serializable JavaDoc {
35
36     private static final long serialVersionUID = 8346311255433349870L;
37
38     /**
39      * An OpenDataException with no detail message.
40      */

41     public OpenDataException() {
42     super();
43     }
44
45     /**
46      * An OpenDataException with a detail message.
47      *
48      * @param msg the detail message.
49      */

50     public OpenDataException(String JavaDoc msg) {
51     super(msg);
52     }
53
54 }
55
Popular Tags