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.monitor;
09:
10: import javax.management.JMRuntimeException;
11:
12: /**
13: * Exception thrown by the monitor when a monitor setting becomes invalid while the monitor is running.
14: * <P>
15: * As the monitor attributes may change at runtime, a check is performed before each observation.
16: * If a monitor attribute has become invalid, a monitor setting exception is thrown.
17: *
18: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
19: */
20:
21: public class MonitorSettingException extends JMRuntimeException {
22:
23: public MonitorSettingException() {
24:
25: }
26:
27: public MonitorSettingException(String message) {
28: super(message);
29: }
30: }
|