Jvmstat

sun.jvmstat.perfdata.monitor
Class MonitorStructureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by sun.jvmstat.monitor.MonitorException
              extended by sun.jvmstat.perfdata.monitor.MonitorStructureException
All Implemented Interfaces:
Serializable

public class MonitorStructureException
extends MonitorException

Exception indicating that improperly formatted data was encountered while parsing a HotSpot PerfData buffer.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
MonitorStructureException()
          Constructs a MonitorStructureException with null as its error detail message.
MonitorStructureException(String s)
          Constructs an MonitorStructureException with the specified detail message.
 
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

MonitorStructureException

public MonitorStructureException()
Constructs a MonitorStructureException with null as its error detail message.


MonitorStructureException

public MonitorStructureException(String s)
Constructs an MonitorStructureException with the specified detail message. The error message string s can later be retrieved by the Throwable.getMessage() method of class java.lang.Throwable.

Parameters:
s - the detail message.

Jvmstat