Class OAuthSignatureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.scribejava.core.exceptions.OAuthException
com.github.scribejava.core.exceptions.OAuthSignatureException
- All Implemented Interfaces:
java.io.Serializable
public class OAuthSignatureException extends OAuthException
Specialized exception that represents a problem in the signature
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description OAuthSignatureException(java.lang.String stringToSign, java.lang.Exception e)
Default constructor -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
OAuthSignatureException
public OAuthSignatureException(java.lang.String stringToSign, java.lang.Exception e)Default constructor- Parameters:
stringToSign
- plain string that gets signed (HMAC-SHA, etc)e
- original exception
-