KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > JMException


1 /*
2  * @(#)JMException.java 4.16 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;
9
10
11 /**
12  * Exceptions thrown by JMX implementations.
13  * It does not include the runtime exceptions.
14  *
15  * @since 1.5
16  */

17 public class JMException extends java.lang.Exception JavaDoc {
18     
19     /* Serial version */
20     private static final long serialVersionUID = 350520924977331825L;
21
22     /**
23      * Default constructor.
24      */

25     public JMException() {
26     super();
27     }
28     
29     /**
30      * Constructor that allows a specific error message to be specified.
31      *
32      * @param msg the detail message.
33      */

34     public JMException(String JavaDoc msg) {
35     super(msg);
36     }
37     
38 }
39
Popular Tags