FileDocCategorySizeDatePackage
MBeanMetaException.javaAPI DocGlassfish v2 API4051Fri May 04 22:25:36 BST 2007com.sun.enterprise.admin.meta

MBeanMetaException

public class MBeanMetaException extends Exception

Fields Summary
Constructors Summary
public MBeanMetaException()
Creates new MBeanMetaException without detail message.

        super();
    
public MBeanMetaException(String msg)
Constructs an MBeanMetaException with the specified detail message.

param
msg the detail message.

        super(msg);
    
public MBeanMetaException(String msg, Exception ex)
Constructs an MBeanMetaException with the specified detail message and a chained exception.

param
msg the detail message.
param
ex chained exception

        super(msg, ex);
    
Methods Summary