public class

MonitorException

extends Exception
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ sun.jvmstat.monitor.MonitorException
Known Direct Subclasses

Class Overview

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

Summary

Public Constructors
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.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public MonitorException ()

Create a MonitorException

public MonitorException (String message)

Create a MonitorException with the given message.

Parameters
message the message to associate with the exception.

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.

public MonitorException (Throwable cause)

Create an InstrumentationException with the given cause.

Parameters
cause the exception causing this exception.