org.oasisopen.sca
Class ServiceRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.oasisopen.sca.ServiceRuntimeException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
InvalidServiceException, ServiceUnavailableException

public class ServiceRuntimeException
extends java.lang.RuntimeException

This exception signals problems in the management of SCA component execution.

See Also:
Serialized Form

Constructor Summary
ServiceRuntimeException()
          Constructs a ServiceRuntimeException with no detail message.
ServiceRuntimeException(java.lang.String message)
          Constructs a ServiceRuntimeException with the specified detail message.
ServiceRuntimeException(java.lang.String message, java.lang.Throwable cause)
          Constructs a ServiceRuntimeException with the specified detail message and cause.
ServiceRuntimeException(java.lang.Throwable cause)
          Constructs a ServiceRuntimeException with the specified cause and a detail message of (cause==null ? null : cause.toString()).
 
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

ServiceRuntimeException

public ServiceRuntimeException()
Constructs a ServiceRuntimeException with no detail message.


ServiceRuntimeException

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

Parameters:
message - the detail message

ServiceRuntimeException

public ServiceRuntimeException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs a ServiceRuntimeException with the specified detail message and cause. The detail message associated with cause is not automatically incorporated in this exception's detail message.

Parameters:
message - the detail message
cause - the cause, or null if the cause is nonexistent or unknown

ServiceRuntimeException

public ServiceRuntimeException(java.lang.Throwable cause)
Constructs a ServiceRuntimeException with the specified cause and a detail message of (cause==null ? null : cause.toString()).

Parameters:
cause - the cause, or null if the cause is nonexistent or unknown