-
- All Implemented Interfaces:
-
java.io.Serializable
@RestrictTo(value = RestrictTo.Scope.LIBRARY_GROUP) public class PendingIntentRequiredException extends FirebaseUiException
-
-
Constructor Summary
Constructors Constructor Description PendingIntentRequiredException(PendingIntent pendingIntent, int requestCode)Constructor for cases when a PendingIntent is available. PendingIntentRequiredException(IntentSender intentSender, int requestCode)Constructor for cases when an IntentSender is available.
-
Method Summary
Modifier and Type Method Description PendingIntentgetPendingIntent()Returns the PendingIntent, if available. IntentSendergetIntentSender()Returns the IntentSender, if available. intgetRequestCode()-
Methods inherited from class com.firebase.ui.auth.FirebaseUiException
getErrorCode -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
PendingIntentRequiredException
PendingIntentRequiredException(PendingIntent pendingIntent, int requestCode)
Constructor for cases when a PendingIntent is available.- Parameters:
pendingIntent- The PendingIntent required to complete the operation.requestCode- The associated request code.
-
PendingIntentRequiredException
PendingIntentRequiredException(IntentSender intentSender, int requestCode)
Constructor for cases when an IntentSender is available.- Parameters:
intentSender- The IntentSender required to complete the operation.requestCode- The associated request code.
-
-
Method Detail
-
getPendingIntent
PendingIntent getPendingIntent()
Returns the PendingIntent, if available.
-
getIntentSender
IntentSender getIntentSender()
Returns the IntentSender, if available.
-
getRequestCode
int getRequestCode()
-
-
-
-