DeploymentPhaseExceptionpublic final class DeploymentPhaseException extends com.sun.enterprise.deployment.backend.IASDeploymentException Represents exceptions coming from different deployment phases |
Fields Summary |
---|
private final String | phaseName | private int | level | public static final int | FATAL | public static final int | NON_FATAL |
Constructors Summary |
---|
public DeploymentPhaseException(String phaseName, String msg, Throwable t)Creates a new instance of DeploymentPhaseException without detail message.
super(msg, t);
this.phaseName = phaseName;
| public DeploymentPhaseException(String phaseName, String msg)
super(msg);
this.phaseName = phaseName;
|
Methods Summary |
---|
public int | getLevel()Returns the level of this exception
return level;
| public java.lang.String | getPhaseName()Returns the phasename
return phaseName;
| public void | setLevel(int level)Sets the error level of this exception
this.level = level;
|
|