com.endeca.edf.adapter
Class AdapterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.endeca.edf.adapter.AdapterException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
JdbcAdapterException, ShutdownRequestAdapterException

public class AdapterException
extends java.lang.Exception

The AdapterException represents all exceptions thrown by Adapter related classes. Specific exceptions are either inherit from this class or are accessible via the chained exception facility.

See Also:
Serialized Form

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

AdapterException

public AdapterException()
Constructs an AdapterException with no specified detail message.


AdapterException

public AdapterException(java.lang.String message)
Constructs an AdapterException with given detail message.

Parameters:
message - the detail message.

AdapterException

public AdapterException(java.lang.String message,
                        java.lang.Throwable cause)
Constructs an AdapterException with a detail message and cause.

Parameters:
message - the detail message.
cause - the detail cause.

AdapterException

public AdapterException(java.lang.Throwable cause)
Constructs an AdapterException with the specified cause. The detail message is generated by (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters:
cause - the detail cause.


© 2008 Endeca Technologies, Inc.
Endeca Confidential