public class

MBeanRegistrationException

extends MBeanException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ javax.management.JMException
         ↳ javax.management.MBeanException
           ↳ javax.management.MBeanRegistrationException

Class Overview

Wraps exceptions thrown by the preRegister(), preDeregister() methods of the MBeanRegistration interface.

Summary

Public Constructors
MBeanRegistrationException(Exception e)
Creates an MBeanRegistrationException that wraps the actual java.lang.Exception.
MBeanRegistrationException(Exception e, String message)
Creates an MBeanRegistrationException that wraps the actual java.lang.Exception with a detailed message.
[Expand]
Inherited Methods
From class javax.management.MBeanException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public MBeanRegistrationException (Exception e)

Creates an MBeanRegistrationException that wraps the actual java.lang.Exception.

Parameters
e the wrapped exception.

public MBeanRegistrationException (Exception e, String message)

Creates an MBeanRegistrationException that wraps the actual java.lang.Exception with a detailed message.

Parameters
e the wrapped exception.
message the detail message.