| java.lang.Object java.lang.Throwable java.lang.Exception org.objectweb.jonas_lib.deployment.api.DeploymentDescException
All known Subclasses: org.objectweb.jonas_web.deployment.api.WebContainerDeploymentDescException, org.objectweb.jonas_client.deployment.api.ClientContainerDeploymentDescException, org.objectweb.jonas_rar.deployment.api.RarDeploymentDescException, org.objectweb.jonas_ws.deployment.api.WSDeploymentDescException, org.objectweb.jonas_ear.deployment.api.EarDeploymentDescException, org.objectweb.jonas_domain.api.DomainMapException, org.objectweb.jonas_clusterd.api.ClusterDaemonConfigurationException,
DeploymentDescException | public class DeploymentDescException extends Exception (Code) | | The DeploymentDesc exception uses the pattern defined by the Enhydra
com.lutris.util.ChainedException
The source has been temporary duplicated to prevent Jonas using
from external dependencies.
author: Christophe Ney |
Method Summary | |
public Throwable | getCause() Gets the causing exception associated with this exception. | public String | getMessage() the message associated with this exception. | public void | printStackTrace() Prints this DeploymentDescException and its backtrace, and the causes
and their stack traces to the standard error stream. | public void | printStackTrace(PrintStream s) Prints this DeploymentDescException and its backtrace, and the causes
and their stack traces to the e specified print stream. | public void | printStackTrace(PrintWriter s) Prints this DeploymentDescException and its backtrace, and the causes
and their stack traces to the e specified print writer. |
DeploymentDescException | public DeploymentDescException()(Code) | | Construct an exception without anything
|
DeploymentDescException | public DeploymentDescException(String msg)(Code) | | Construct an exception without a specified cause.
Parameters: msg - The message associated with the exception. |
DeploymentDescException | public DeploymentDescException(String msg, Throwable cause)(Code) | | Construct an exception with an associated causing exception.
Parameters: msg - The message associated with the exception. Parameters: cause - The error or exception that cause thisexception. |
DeploymentDescException | public DeploymentDescException(Throwable cause)(Code) | | Construct an exception from a causing exception.
Parameters: cause - The error or exception that cause thisexception. The message will be take be this object'smessasge. |
getCause | public Throwable getCause()(Code) | | Gets the causing exception associated with this exception.
The causing exception or null if no cause is specified. |
getMessage | public String getMessage()(Code) | | the message associated with this exception. If causesare included, they will be appended to the message. |
printStackTrace | public void printStackTrace()(Code) | | Prints this DeploymentDescException and its backtrace, and the causes
and their stack traces to the standard error stream.
|
printStackTrace | public void printStackTrace(PrintStream s)(Code) | | Prints this DeploymentDescException and its backtrace, and the causes
and their stack traces to the e specified print stream.
Parameters: s - print the trace on a specific print stream |
printStackTrace | public void printStackTrace(PrintWriter s)(Code) | | Prints this DeploymentDescException and its backtrace, and the causes
and their stack traces to the e specified print writer.
Parameters: s - print the trace on a specific print stream |
|
|