MBeanRegistrationExceptionpublic class MBeanRegistrationException extends MBeanException Wraps exceptions thrown by the preRegister(), preDeregister() methods
of the MBeanRegistration interface. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public MBeanRegistrationException(Exception e)Creates an MBeanRegistrationException that wraps
the actual java.lang.Exception .
super(e) ;
| public MBeanRegistrationException(Exception e, String message)Creates an MBeanRegistrationException that wraps
the actual java.lang.Exception with a detailed
message.
super(e, message) ;
|
|