01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.org
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package javax.management;
09:
10: /**
11: * Represents exceptions thrown in the MBean server when performing operations
12: * on MBeans.
13: *
14: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
15: */
16:
17: public class OperationsException extends JMException {
18:
19: /**
20: * Default constructor.
21: */
22: public OperationsException() {
23: super ();
24: }
25:
26: /**
27: * Constructor that allows a specific error message to be specified.
28: */
29: public OperationsException(String message) {
30: super(message);
31: }
32:
33: }
|