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


public final class FacebookSdkNotInitializedException
extends FacebookException
An Exception indicating that the Facebook SDK has not been correctly initialized.
Nested Class Summary
Modifier and TypeClassDescription
public classFacebookSdkNotInitializedException.Companion
Field Summary
Modifier and TypeFieldDescription
private final Throwablecause
private final Stringmessage
Constructor Summary
ConstructorDescription
FacebookSdkNotInitializedException()Constructs a FacebookSdkNotInitializedException with no additional information.
FacebookSdkNotInitializedException(String message)Constructs a FacebookSdkNotInitializedException with a message.
FacebookSdkNotInitializedException(String message, Throwable throwable)Constructs a FacebookSdkNotInitializedException with a message and inner error.
FacebookSdkNotInitializedException(Throwable throwable)Constructs a FacebookSdkNotInitializedException with an inner error.
Method Summary
Modifier and TypeMethodDescription
ThrowablegetCause()
StringgetMessage()
Methods inherited from class com.facebook.FacebookSdkNotInitializedException
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

FacebookSdkNotInitializedException

FacebookSdkNotInitializedException()
Constructs a FacebookSdkNotInitializedException with no additional information.

FacebookSdkNotInitializedException

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

FacebookSdkNotInitializedException

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

FacebookSdkNotInitializedException

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

getMessage

StringgetMessage()