KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > monitor > MonitorSettingException


1 /*
2  * @(#)MonitorSettingException.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.monitor;
9
10
11 /**
12  * Exception thrown by the monitor when a monitor setting becomes invalid while the monitor is running.
13  * <P>
14  * As the monitor attributes may change at runtime, a check is performed before each observation.
15  * If a monitor attribute has become invalid, a monitor setting exception is thrown.
16  *
17  * @version 4.16 12/19/03
18  * @author Sun Microsystems, Inc
19  *
20  * @since 1.5
21  */

22 public class MonitorSettingException extends javax.management.JMRuntimeException JavaDoc {
23
24     /* Serial version */
25     private static final long serialVersionUID = -8807913418190202007L;
26
27     /**
28      * Default constructor.
29      */

30     public MonitorSettingException() {
31         super();
32     }
33
34     /**
35      * Constructor that allows an error message to be specified.
36      *
37      * @param message The specific error message.
38      */

39     public MonitorSettingException(String JavaDoc message) {
40         super(message);
41     }
42 }
43
Popular Tags