org.oasisopen.sca
Class NoSuchServiceException

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

public class NoSuchServiceException
extends java.lang.Exception

This exception signals that the given SCA service does not exist.

See Also:
Serialized Form

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

NoSuchServiceException

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


NoSuchServiceException

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

Parameters:
message - the detail message

NoSuchServiceException

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

NoSuchServiceException

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