FileDocCategorySizeDatePackage
MonitorSettingException.javaAPI DocJava SE 5 API1134Fri Aug 26 14:57:36 BST 2005javax.management.monitor

MonitorSettingException

public class MonitorSettingException extends JMRuntimeException
Exception thrown by the monitor when a monitor setting becomes invalid while the monitor is running.

As the monitor attributes may change at runtime, a check is performed before each observation. If a monitor attribute has become invalid, a monitor setting exception is thrown.

version
4.16 12/19/03
author
Sun Microsystems, Inc
since
1.5

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public MonitorSettingException()
Default constructor.


           
      
        super();
    
public MonitorSettingException(String message)
Constructor that allows an error message to be specified.

param
message The specific error message.

        super(message);
    
Methods Summary