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.
super(msg);
|
public DeploymentTargetException(String msg, Throwable t)Constructs an instance of DeploymentTargetException with the specified detail message.
and a cause (Throwable)
super(msg, t);
|
public DeploymentTargetException(Throwable t)Constructs an instance of DeploymentTargetException with the specified cause (Throwable)
super(t);
|