com.unboundid.directory.sdk.broker.types
Class AttributeRetrievalException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.unboundid.directory.sdk.broker.types.AttributeRetrievalException
All Implemented Interfaces:
java.io.Serializable

@NotExtensible
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class AttributeRetrievalException
extends java.lang.Exception

Exception that may be thrown from the RequestContext when a third-party PIP extension asks for additional request attributes.

See Also:
Serialized Form

Constructor Summary
AttributeRetrievalException(java.lang.String message)
          Creates a new instance of this exception with the provided message.
AttributeRetrievalException(java.lang.String message, java.lang.Throwable cause)
          Creates a new instance of this exception with the provided message and 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AttributeRetrievalException

public AttributeRetrievalException(java.lang.String message)
Creates a new instance of this exception with the provided message.

Parameters:
message - The message to use for this exception.

AttributeRetrievalException

public AttributeRetrievalException(java.lang.String message,
                                   java.lang.Throwable cause)
Creates a new instance of this exception with the provided message and cause.

Parameters:
message - The message to use for this exception.
cause - The underlying cause for this exception. It may be null if no cause is available.