com.ibm.websphere.sca

Class ServiceUnavailableException

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended byjava.lang.RuntimeException
  5. extended bycom.ibm.websphere.sca.ServiceRuntimeException
  6. extended bycom.ibm.websphere.sca.ServiceUnavailableException
All implemented interfaces:
java.io.Serializable

  1. public class ServiceUnavailableException
  2. extends ServiceRuntimeException
Exception used to indicate that a runtime exception occurred during the invocation of and external service.
See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Constructor Summary

Constructor and Description
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 com.ibm.websphere.sca.ServiceRuntimeException
addServiceContext, getServiceContext, printStackTrace, printStackTrace, toString
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, setStackTrace
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Field Detail

  1. public static final java.lang.String COPYRIGHT
See Also:

Constructor Detail

ServiceUnavailableException

  1. public ServiceUnavailableException( )
Constructs a new ServiceUnavailableException.

ServiceUnavailableException

  1. 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

  1. 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

  1. public ServiceUnavailableException( java.lang.String message,
  2. 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).