FileDocCategorySizeDatePackage
CustomMBeanException.javaAPI DocGlassfish v2 API2627Fri May 04 22:33:46 BST 2007com.sun.enterprise.admin.server.core

CustomMBeanException

public class CustomMBeanException extends Exception

Fields Summary
Constructors Summary
public CustomMBeanException()
Creates a new instance of CustomMBeanException without detail message.

    
public CustomMBeanException(String msg)
Constructs an instance of CustomMBeanException with the specified detail message.

param
msg the detail message.

        super(msg);
    
public CustomMBeanException(Throwable t)

        super (t);
    
public CustomMBeanException(String msg, Throwable t)

        super (msg, t);
    
Methods Summary