Class OAuth1SignatureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.glassfish.jersey.oauth1.signature.OAuth1SignatureException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
InvalidSecretException
,UnsupportedSignatureMethodException
public class OAuth1SignatureException extends java.lang.Exception
Thrown to indicate that an OAuth exception occurred.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OAuth1SignatureException()
Constructs an OAuth signature exception with no detail message.OAuth1SignatureException(java.lang.String s)
Constructs an OAuth signature exception with the specified detail message.OAuth1SignatureException(java.lang.Throwable cause)
Constructs an OAuth signature exception with the specified cause.
-
-
-
Constructor Detail
-
OAuth1SignatureException
public OAuth1SignatureException()
Constructs an OAuth signature exception with no detail message.
-
OAuth1SignatureException
public OAuth1SignatureException(java.lang.String s)
Constructs an OAuth signature exception with the specified detail message.- Parameters:
s
- the detail message.
-
OAuth1SignatureException
public OAuth1SignatureException(java.lang.Throwable cause)
Constructs an OAuth signature exception with the specified cause.- Parameters:
cause
- the cause of the exception.
-
-