2016/05/28 - Apache Tuscany has been retired.

For more information, please explore the Attic.


org.osoa.sca
Class ServiceUnavailableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.osoa.sca.ServiceRuntimeException
                  extended by org.osoa.sca.ServiceUnavailableException
All Implemented Interfaces:
java.io.Serializable

public class ServiceUnavailableException
extends ServiceRuntimeException

Exception used to indicate that a runtime exception occurred during the invocation of and external service.

Version:
$Rev: 498006 $ $Date: 2007-01-19 23:37:39 +0000 (Fri, 19 Jan 2007) $
See Also:
Serialized Form

Constructor Summary
ServiceUnavailableException()
          Constructs a new ServiceUnavailableException.
ServiceUnavailableException(java.lang.String message)
          Constructs a new ServiceUnavailableException with the specified detail message.
ServiceUnavailableException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new ServiceUnavailableException with the specified detail message and cause.
ServiceUnavailableException(java.lang.Throwable cause)
          Constructs a new ServiceUnavailableException with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ServiceUnavailableException

public ServiceUnavailableException()
Constructs a new ServiceUnavailableException.


ServiceUnavailableException

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

Parameters:
message - The detail message (which is saved to later retrieval by the getMessage() method).

ServiceUnavailableException

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

Parameters:
cause - The cause (which is saved to later retrieval by the getCause() method).

ServiceUnavailableException

public ServiceUnavailableException(java.lang.String message,
                                   java.lang.Throwable cause)
Constructs a new ServiceUnavailableException with the specified detail message and cause.

Parameters:
message - The message (which is saved to later retrieval by the getMessage() method).
cause - The cause (which is saved to later retrieval by the getCause() method).