KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > OperationsException


1 /*
2  * @(#)OperationsException.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 /**
13  * Represents exceptions thrown in the MBean server when performing operations
14  * on MBeans.
15  *
16  * @since 1.5
17  */

18 public class OperationsException extends JMException JavaDoc {
19
20     /* Serial version */
21     private static final long serialVersionUID = -4967597595580536216L;
22
23     /**
24      * Default constructor.
25      */

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

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