com.nimbusds.openid.connect.sdk.op
Class ResolveException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.nimbusds.oauth2.sdk.GeneralException
              extended by com.nimbusds.openid.connect.sdk.op.ResolveException
All Implemented Interfaces:
Serializable

public class ResolveException
extends GeneralException

Resolve exception.

Author:
Vladimir Dzhuvinov
See Also:
Serialized Form

Constructor Summary
ResolveException(String message)
          Creates a new resolve exception.
ResolveException(String message, ErrorObject error, Throwable cause)
          Creates a new resolve exception.
ResolveException(String message, ErrorObject error, URL redirectURI, State state, Throwable cause)
          Creates a new resolve exception.
ResolveException(String message, Throwable cause)
          Creates a new resolve exception.
 
Method Summary
 
Methods inherited from class com.nimbusds.oauth2.sdk.GeneralException
getErrorObject, getRedirectURI, getState
 
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

ResolveException

public ResolveException(String message)
Creates a new resolve exception.

Parameters:
message - The exception message. May be null.

ResolveException

public ResolveException(String message,
                        Throwable cause)
Creates a new resolve exception.

Parameters:
message - The exception message. May be null.
cause - The exception cause, null if not specified.

ResolveException

public ResolveException(String message,
                        ErrorObject error,
                        Throwable cause)
Creates a new resolve exception.

Parameters:
message - The exception message. May be null.
error - The associated OpenID Connect / OAuth 2.0 error, null if not specified.
cause - The exception cause, null if not specified.

ResolveException

public ResolveException(String message,
                        ErrorObject error,
                        URL redirectURI,
                        State state,
                        Throwable cause)
Creates a new resolve exception.

Parameters:
message - The exception message. May be null.
error - The associated OpenID Connect / OAuth 2.0 error, null if not specified.
redirectURI - The associated redirection URI, must not be null.
state - The optional associated state parameter, null if not specified.
cause - The exception cause, null if not specified.


Copyright © 2013 NimbusDS. All Rights Reserved.