Class ResolveException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.nimbusds.oauth2.sdk.GeneralException
-
- com.nimbusds.openid.connect.sdk.federation.trust.ResolveException
-
- All Implemented Interfaces:
Serializable
public class ResolveException extends GeneralException
Resolve exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResolveException(String message)
Creates a new resolve exception.ResolveException(String message, ErrorObject errorObject)
Creates a new resolve exception.ResolveException(String message, Throwable cause)
Creates a new resolve exception.ResolveException(String message, List<Throwable> causes)
Creates a new resolve exception with potentially multiple causes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Throwable>
getCauses()
Returns the exception causes.-
Methods inherited from class com.nimbusds.oauth2.sdk.GeneralException
getClientID, getErrorObject, getRedirectionURI, getResponseMode, getState
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ResolveException
public ResolveException(String message)
Creates a new resolve exception.- Parameters:
message
- The message.
-
ResolveException
public ResolveException(String message, Throwable cause)
Creates a new resolve exception.- Parameters:
message
- The message.cause
- The cause.
-
ResolveException
public ResolveException(String message, List<Throwable> causes)
Creates a new resolve exception with potentially multiple causes.- Parameters:
message
- The message.causes
- The causes, empty list ornull
if none.
-
ResolveException
public ResolveException(String message, ErrorObject errorObject)
Creates a new resolve exception.- Parameters:
message
- The message.errorObject
- The error object.
-
-