Package com.restfb.exception
Class FacebookSignedRequestParsingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.restfb.exception.FacebookException
com.restfb.exception.FacebookSignedRequestParsingException
- All Implemented Interfaces:
Serializable
Indicates that signed request parsing failed.
See FacebookClient.parseSignedRequest(String, String, Class)
for more details.
- Since:
- 1.6.13
- Author:
- Mark Allen
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an exception with the given message.FacebookSignedRequestParsingException
(String message, Throwable cause) Creates an exception with the given message and 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
-
FacebookSignedRequestParsingException
Creates an exception with the given message.- Parameters:
message
- A message describing this exception.
-
FacebookSignedRequestParsingException
Creates an exception with the given message and cause.- Parameters:
message
- A message describing this exception.cause
- The exception that caused this exception to be thrown.
-