lpw
2021-04-20 b19a78b27247f5f0761c35b5b3e8a41876eabb05
frameworks/FBSDKCoreKit.framework/Headers/FBSDKConstants.h
@@ -243,10 +243,10 @@
#endif
/**
 FBSDKError
 FBSDKCoreError
 Error codes for FBSDKErrorDomain.
 */
typedef NS_ERROR_ENUM(FBSDKErrorDomain, FBSDKError)
typedef NS_ERROR_ENUM(FBSDKErrorDomain, FBSDKCoreError)
{
  /**
   Reserved.
@@ -323,6 +323,11 @@
   Indicates an app switch to the browser (typically for a dialog) failed.
   */
  FBSDKErrorBrowserUnavailable,
  /**
   Indicates that a bridge api interaction was interrupted.
   */
  FBSDKErrorBridgeAPIInterruption,
} NS_SWIFT_NAME(CoreError);
/**
@@ -364,7 +369,20 @@
                     optionIndex:(NSUInteger)recoveryOptionIndex
                        delegate:(nullable id)delegate
              didRecoverSelector:(SEL)didRecoverSelector
                     contextInfo:(nullable void *)contextInfo;
                     contextInfo:(nullable void *)contextInfo
DEPRECATED_MSG_ATTRIBUTE("Delegate/selector -based error recovery will be removed in the next major version release.");
/**
 attempt the recovery
 @param error the error
 @param recoveryOptionIndex the selected option index
 @param completionHandler the handler called upon completion of error recovery
 Given that an error alert has been presented document-modally to the user, and the user has chosen one of the error's recovery options, attempt recovery from the error, and call the completion handler. The option index is an index into the error's array of localized recovery options. The value passed for didRecover must be YES if error recovery was completely successful, NO otherwise.
 */
- (void)attemptRecoveryFromError:(NSError *)error
                     optionIndex:(NSUInteger)recoveryOptionIndex
               completionHandler:(void (^)(BOOL didRecover))completionHandler;
@end
NS_ASSUME_NONNULL_END