org.oasisopen.sca
Class InvalidServiceException

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

public class InvalidServiceException
extends ServiceRuntimeException

This exception signals that the ServiceReference is no longer valid. This can happen when the target of the reference is undeployed. This exception is not transient and therefore is unlikely to be resolved by retrying the operation and will most likely require human intervention.

See Also:
Serialized Form

Constructor Summary
InvalidServiceException()
          Constructs a InvalidServiceException with no detail message.
InvalidServiceException(java.lang.String message)
          Constructs a InvalidServiceException with the specified detail message.
InvalidServiceException(java.lang.String message, java.lang.Throwable cause)
          Constructs a InvalidServiceException with the specified detail message and cause.
InvalidServiceException(java.lang.Throwable cause)
          Constructs a InvalidServiceException 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

InvalidServiceException

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


InvalidServiceException

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

Parameters:
message - the detail message

InvalidServiceException

public InvalidServiceException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs a InvalidServiceException 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

InvalidServiceException

public InvalidServiceException(java.lang.Throwable cause)
Constructs a InvalidServiceException 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