FileDocCategorySizeDatePackage
AutoDeploymentException.javaAPI DocGlassfish v2 API2856Fri May 04 22:34:30 BST 2007com.sun.enterprise.deployment.autodeploy

AutoDeploymentException

public class AutoDeploymentException extends com.sun.enterprise.deployment.backend.IASDeploymentException
AutoDeploymentException
author
vikas

Fields Summary
Constructors Summary
public AutoDeploymentException()
constructor with no argument

        super();
    
public AutoDeploymentException(String mes)
constructor with argument String

        super(mes);
    
public AutoDeploymentException(Throwable t)
constructor with argument Throwable

        super(t.toString());
    
public AutoDeploymentException(String s, Throwable t)
constructor with argument String, Throwable

        super(s + " -- " + t.getMessage(), t);
        
    
Methods Summary