FileDocCategorySizeDatePackage
InitException.javaAPI DocGlassfish v2 API2560Fri May 04 22:33:48 BST 2007com.sun.enterprise.admin.server.core.jmx

InitException

public class InitException extends Exception

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

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

param
msg the detail message.

        super(msg);
    
public InitException(String msg, Throwable cause)

        super(msg, cause );
    
public InitException(Throwable cause)

        super( cause );
    
Methods Summary