FileDocCategorySizeDatePackage
StatisticMonitorSettingException.javaAPI DocGlassfish v2 API3020Fri May 04 22:33:44 BST 2007com.sun.enterprise.admin.selfmanagement.event

StatisticMonitorSettingException

public class StatisticMonitorSettingException extends JMRuntimeException
Exception thrown by the statistic 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. Used for JDK version greater than 1.5

author
Sun Microsystems, Inc

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


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

param
message The specific error message.

        super(message);
    
Methods Summary