Class OAuth1SignatureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.glassfish.jersey.oauth1.signature.OAuth1SignatureException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidSecretException
,UnsupportedSignatureMethodException
Thrown to indicate that an OAuth exception occurred.
- Author:
- Paul C. Bryan <pbryan@sun.com>
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an OAuth signature exception with no detail message.Constructs an OAuth signature exception with the specified detail message.Constructs an OAuth signature exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OAuth1SignatureException
public OAuth1SignatureException()Constructs an OAuth signature exception with no detail message. -
OAuth1SignatureException
Constructs an OAuth signature exception with the specified detail message.- Parameters:
s
- the detail message.
-
OAuth1SignatureException
Constructs an OAuth signature exception with the specified cause.- Parameters:
cause
- the cause of the exception.
-