Jvmstat

sun.jvmstat.monitor
Class MonitorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by sun.jvmstat.monitor.MonitorException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MonitorDataException, MonitorStructureException, MonitorTypeException, MonitorVersionException

public class MonitorException
extends Exception

Base class for exceptions that occur while interfacing with the Monitoring interfaces.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
MonitorException()
          Create a MonitorException
MonitorException(String message)
          Create a MonitorException with the given message.
MonitorException(String message, Throwable cause)
          Create a MonitorException with the given message and cause.
MonitorException(Throwable cause)
          Create an InstrumentationException with the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MonitorException

public MonitorException()
Create a MonitorException


MonitorException

public MonitorException(String message)
Create a MonitorException with the given message.

Parameters:
message - the message to associate with the exception.

MonitorException

public MonitorException(String message,
                        Throwable cause)
Create a MonitorException with the given message and cause.

Parameters:
message - the message to associate with the exception.
cause - the exception causing this exception.

MonitorException

public MonitorException(Throwable cause)
Create an InstrumentationException with the given cause.

Parameters:
cause - the exception causing this exception.

Jvmstat