com.endeca.edf.adapter
Class AdapterError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by com.endeca.edf.adapter.AdapterError
All Implemented Interfaces:
java.io.Serializable

public class AdapterError
extends java.lang.Error

The AdapterError represents all errors thrown by Adapter related classes. Specific errors either inherit from this class or are accessible via the chained Error facility.

See Also:
Serialized Form

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

AdapterError

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


AdapterError

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

Parameters:
message - the detail message.

AdapterError

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

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

AdapterError

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


© 2003, 2013 Oracle and/or its affiliates. All rights reserved.
Oracle and/or its affiliates Confidential