JMExceptionpublic class JMException extends Exception Exceptions thrown by JMX implementations.
It does not include the runtime exceptions. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public JMException()Default constructor.
super();
| public JMException(String msg)Constructor that allows a specific error message to be specified.
super(msg);
|
|