KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)InvalidOpenTypeException.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

20
21 /**
22  * This runtime exception is thrown to indicate that the <i>open type</i> of an <i>open data</i> value
23  * is not the one expected.
24  *
25  * @version 3.17 03/12/19
26  * @author Sun Microsystems, Inc.
27  *
28  * @since 1.5
29  * @since.unbundled JMX 1.1
30  */

31 public class InvalidOpenTypeException
32     extends IllegalArgumentException JavaDoc
33     implements Serializable JavaDoc {
34
35     private static final long serialVersionUID = -2837312755412327534L;
36
37     /** An InvalidOpenTypeException with no detail message. */
38     public InvalidOpenTypeException() {
39     super();
40     }
41
42     /**
43      * An InvalidOpenTypeException with a detail message.
44      *
45      * @param msg the detail message.
46      */

47     public InvalidOpenTypeException(String JavaDoc msg) {
48     super(msg);
49     }
50
51 }
52
Popular Tags