FileDocCategorySizeDatePackage
DeploymentTargetException.javaAPI DocGlassfish v2 API3346Fri May 04 22:34:38 BST 2007com.sun.enterprise.deployment.phasing

DeploymentTargetException

public class DeploymentTargetException extends Exception
Represents exceptions happening from DeploymentTargets
author
Sandhya E

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

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

param
msg the detail message.

        super(msg);
    
public DeploymentTargetException(String msg, Throwable t)
Constructs an instance of DeploymentTargetException with the specified detail message. and a cause (Throwable)

param
msg the detail message.
param
t throwable

        super(msg, t);
    
public DeploymentTargetException(Throwable t)
Constructs an instance of DeploymentTargetException with the specified cause (Throwable)

param
t throwable

        super(t);
    
Methods Summary