Class InvalidDPoPProofException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.nimbusds.oauth2.sdk.dpop.verifiers.InvalidDPoPProofException
-
- All Implemented Interfaces:
Serializable
public class InvalidDPoPProofException extends Exception
Invalid DPoP proof exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidDPoPProofException(String message)
Creates a new invalid DPoP proof exception.InvalidDPoPProofException(String message, Throwable cause)
Creates a new invalid DPoP proof exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidDPoPProofException
public InvalidDPoPProofException(String message)
Creates a new invalid DPoP proof exception.- Parameters:
message
- The message,null
if not specified.
-
InvalidDPoPProofException
public InvalidDPoPProofException(String message, Throwable cause)
Creates a new invalid DPoP proof exception.- Parameters:
message
- The message,null
if not specified.cause
- The cause,null
if not specified.
-
-