org.objectweb.jonas_ear.deployment.api
Class EarDeploymentDescException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.objectweb.jonas_lib.deployment.api.DeploymentDescException
              extended by org.objectweb.jonas_ear.deployment.api.EarDeploymentDescException
All Implemented Interfaces:
java.io.Serializable

public class EarDeploymentDescException
extends DeploymentDescException

The class EarDeploymentDescException indicates conditions that a reasonable application might want to catch.

Author:
Florent Benoit, Ludovic Bert
See Also:
Serialized Form

Constructor Summary
EarDeploymentDescException()
          Constructs a new EarDeploymentDescException with no detail message.
EarDeploymentDescException(java.lang.String message)
          Constructs a new EarDeploymentDescException with the specified message.
EarDeploymentDescException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new EarDeploymentDescException with the specified error cause.
EarDeploymentDescException(java.lang.Throwable cause)
          Constructs a new EarDeploymentDescException with the specified error cause.
 
Method Summary
 
Methods inherited from class org.objectweb.jonas_lib.deployment.api.DeploymentDescException
getCause, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EarDeploymentDescException

public EarDeploymentDescException()
Constructs a new EarDeploymentDescException with no detail message.


EarDeploymentDescException

public EarDeploymentDescException(java.lang.String message)
Constructs a new EarDeploymentDescException with the specified message.

Parameters:
message - the detail message.

EarDeploymentDescException

public EarDeploymentDescException(java.lang.Throwable cause)
Constructs a new EarDeploymentDescException with the specified error cause.

Parameters:
cause - the cause of the error.

EarDeploymentDescException

public EarDeploymentDescException(java.lang.String message,
                                  java.lang.Throwable cause)
Constructs a new EarDeploymentDescException with the specified error cause.

Parameters:
message - the detail message.
cause - the cause of the error.