org.oasisopen.sca
Class NoSuchDomainException

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

public class NoSuchDomainException
extends java.lang.Exception

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

See Also:
Serialized Form

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

NoSuchDomainException

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


NoSuchDomainException

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

Parameters:
message - the detail message

NoSuchDomainException

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

NoSuchDomainException

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