FileDocCategorySizeDatePackage
ASLauncherException.javaAPI DocGlassfish v2 API2834Tue May 29 22:22:28 BST 2007com.sun.enterprise.admin.servermgmt.launch

ASLauncherException

public class ASLauncherException extends Exception
author
bnevins

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

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

param
msg the detail message.

        super(msg);
    
public ASLauncherException(Throwable t)

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

        super(msg, t);
    
Methods Summary