FileDocCategorySizeDatePackage
DeploymentException.javaAPI DocGlassfish v2 API2399Fri May 04 22:34:30 BST 2007com.sun.enterprise.deployment

DeploymentException

public class DeploymentException extends Exception
Represents an error in deployment.
author
Satish Viswanatham
version

Fields Summary
Constructors Summary
public DeploymentException()

	
public DeploymentException(String s)

		super(s);
	
public DeploymentException(Throwable t)

		super(t);
	
public DeploymentException(String s, Throwable t)

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