Package com.restfb.exception
Class FacebookCheckedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.restfb.exception.FacebookCheckedException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FacebookDeviceTokenException
public abstract class FacebookCheckedException extends Exception
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
FacebookCheckedException(String message)
Creates an exception with the given message.protected
FacebookCheckedException(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 Detail
-
FacebookCheckedException
protected FacebookCheckedException(String message)
Creates an exception with the given message.- Parameters:
message
- A message describing this exception.
-
FacebookCheckedException
protected FacebookCheckedException(String message, Throwable cause)
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.
-
-