Android SDK Version
All Implemented Interfaces:
java.io.Serializable


public final class FacebookOperationCanceledException
extends FacebookException
An Exception indicating that an operation was canceled before it completed.
Nested Class Summary
Modifier and TypeClassDescription
public classFacebookOperationCanceledException.Companion
Field Summary
Modifier and TypeFieldDescription
private final Throwablecause
private final Stringmessage
Constructor Summary
ConstructorDescription
FacebookOperationCanceledException()Constructs a FacebookOperationCanceledException with no additional information.
FacebookOperationCanceledException(String message)Constructs a FacebookOperationCanceledException with a message.
FacebookOperationCanceledException(String message, Throwable throwable)Constructs a FacebookOperationCanceledException with a message and inner error.
FacebookOperationCanceledException(Throwable throwable)Constructs a FacebookOperationCanceledException with an inner error.
Method Summary
Modifier and TypeMethodDescription
ThrowablegetCause()
StringgetMessage()
Methods inherited from class com.facebook.FacebookOperationCanceledException
toString
Methods inherited from class java.lang.Exception
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructor Detail

FacebookOperationCanceledException

FacebookOperationCanceledException()
Constructs a FacebookOperationCanceledException with no additional information.

FacebookOperationCanceledException

FacebookOperationCanceledException(String message)
Constructs a FacebookOperationCanceledException with a message.
Parameters:
message - A String to be returned from getMessage.

FacebookOperationCanceledException

FacebookOperationCanceledException(String message, Throwable throwable)
Constructs a FacebookOperationCanceledException with a message and inner error.
Parameters:
message - A String to be returned from getMessage.
throwable - A Throwable to be returned from getCause.

FacebookOperationCanceledException

FacebookOperationCanceledException(Throwable throwable)
Constructs a FacebookOperationCanceledException with an inner error.
Parameters:
throwable - A Throwable to be returned from getCause.
Method Detail

getMessage

StringgetMessage()