commonj.connector.runtime
Class SelectorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by commonj.connector.runtime.SelectorException
All Implemented Interfaces:
Serializable

public class SelectorException
extends Exception

An exception used to indicate runtime errors occuring during selection of the EIS function name. If the error is due to another, specific exception, the cause exception should be embedded in this exception.

Since:
1.0
See Also:
Serialized Form

Constructor Summary
SelectorException()
          Default constructor
SelectorException(String message)
          Constructor with message
SelectorException(String message, Throwable cause)
          Constructor with message and cause exception
SelectorException(Throwable cause)
          The constructor with cause exception
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SelectorException

public SelectorException()
Default constructor

See Also:
Exception.Exception()

SelectorException

public SelectorException(String message)
Constructor with message

Parameters:
message - The exception message
See Also:
Exception.Exception(java.lang.String)

SelectorException

public SelectorException(String message,
                         Throwable cause)
Constructor with message and cause exception

Parameters:
message - The exception message
cause - The cause exception
See Also:
Exception.Exception(java.lang.String, java.lang.Throwable)

SelectorException

public SelectorException(Throwable cause)
The constructor with cause exception

Parameters:
cause - The cause exception
See Also:
Exception.Exception(java.lang.Throwable)