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.openmbean;
09:
10: import java.io.Serializable;
11: import javax.management.JMException;
12:
13: /**
14: * 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
15: * could not be constructed because one or more validity constraints were not met.
16: *
17: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
18: */
19:
20: public class OpenDataException extends JMException implements
21: Serializable {
22:
23: public OpenDataException() {
24:
25: }
26:
27: public OpenDataException(String msg) {
28: super(msg);
29: }
30: }
|