Package org.scribe.exceptions
Class OAuthException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.scribe.exceptions.OAuthException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OAuthConnectionException
,OAuthParametersMissingException
,OAuthSignatureException
Default scribe exception.
Represents a problem in the OAuth signing process
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionOAuthException
(String message) No-exception constructor.OAuthException
(String message, 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
-
Constructor Details
-
OAuthException
Default constructor- Parameters:
message
- message explaining what went wronge
- original exception
-
OAuthException
No-exception constructor. Used when there is no original exception- Parameters:
message
- message explaining what went wrong
-