public class

MonitorStructureException

extends MonitorException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ sun.jvmstat.monitor.MonitorException
         ↳ sun.jvmstat.perfdata.monitor.MonitorStructureException

Class Overview

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

Summary

Public Constructors
MonitorStructureException()
Constructs a MonitorStructureException with null as its error detail message.
MonitorStructureException(String s)
Constructs an MonitorStructureException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public MonitorStructureException ()

Constructs a MonitorStructureException with null as its error detail message.

public MonitorStructureException (String s)

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

Parameters
s the detail message.