FileDocCategorySizeDatePackage
MBeanRegistrationException.javaAPI DocJava SE 5 API1185Fri Aug 26 14:57:32 BST 2005javax.management

MBeanRegistrationException

public class MBeanRegistrationException extends MBeanException
Wraps exceptions thrown by the preRegister(), preDeregister() methods of the MBeanRegistration interface.
since
1.5

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public MBeanRegistrationException(Exception e)
Creates an MBeanRegistrationException that wraps the actual java.lang.Exception.

param
e the wrapped exception.


                             
        
	super(e) ;
    
public MBeanRegistrationException(Exception e, String message)
Creates an MBeanRegistrationException that wraps the actual java.lang.Exception with a detailed message.

param
e the wrapped exception.
param
message the detail message.

 
	super(e, message) ;
    
Methods Summary