@@ -21,19 +21,19 @@ NS_ASSUME_NONNULL_BEGIN
21
21
/* * @class FIRAuthErrors
22
22
@remarks Error Codes common to all API Methods:
23
23
24
- + `FIRAuthErrorCodeNetworkError `
25
- + `FIRAuthErrorCodeUserNotFound `
26
- + `FIRAuthErrorCodeUserTokenExpired `
27
- + `FIRAuthErrorCodeTooManyRequests `
28
- + `FIRAuthErrorCodeInvalidAPIKey `
29
- + `FIRAuthErrorCodeAppNotAuthorized `
30
- + `FIRAuthErrorCodeKeychainError `
31
- + `FIRAuthErrorCodeInternalError `
24
+ + `AuthErrorCodeNetworkError `
25
+ + `AuthErrorCodeUserNotFound `
26
+ + `AuthErrorCodeUserTokenExpired `
27
+ + `AuthErrorCodeTooManyRequests `
28
+ + `AuthErrorCodeInvalidAPIKey `
29
+ + `AuthErrorCodeAppNotAuthorized `
30
+ + `AuthErrorCodeKeychainError `
31
+ + `AuthErrorCodeInternalError `
32
32
33
- @remarks Common error codes for `FIRUser ` operations:
33
+ @remarks Common error codes for `User ` operations:
34
34
35
- + `FIRAuthErrorCodeInvalidUserToken `
36
- + `FIRAuthErrorCodeUserDisabled `
35
+ + `AuthErrorCodeInvalidUserToken `
36
+ + `AuthErrorCodeUserDisabled `
37
37
38
38
*/
39
39
NS_SWIFT_NAME (AuthErrors)
@@ -51,10 +51,10 @@ extern NSString *const FIRAuthErrorUserInfoNameKey NS_SWIFT_NAME(AuthErrorUserIn
51
51
52
52
/* *
53
53
@brief Errors with one of the following three codes:
54
- - `FIRAuthErrorCodeAccountExistsWithDifferentCredential `
55
- - `FIRAuthErrorCodeCredentialAlreadyInUse `
56
- - `FIRAuthErrorCodeEmailAlreadyInUse `
57
- may contain an `NSError.userInfo` dictinary object which contains this key. The value
54
+ - `AuthErrorCodeAccountExistsWithDifferentCredential `
55
+ - `AuthErrorCodeCredentialAlreadyInUse `
56
+ - `AuthErrorCodeEmailAlreadyInUse `
57
+ may contain an `NSError.userInfo` dictinary object which contains this key. The value
58
58
associated with this key is an NSString of the email address of the account that already
59
59
exists.
60
60
*/
@@ -275,12 +275,12 @@ typedef NS_ERROR_ENUM(FIRAuthErrorDomain, FIRAuthErrorCode){
275
275
FIRAuthErrorCodeQuotaExceeded = 17052 ,
276
276
277
277
/* * Indicates that the APNs device token could not be obtained. The app may not have set up
278
- remote notification correctly, or may fail to forward the APNs device token to FIRAuth
278
+ remote notification correctly, or may fail to forward the APNs device token to Auth
279
279
if app delegate swizzling is disabled.
280
280
*/
281
281
FIRAuthErrorCodeMissingAppToken = 17053 ,
282
282
283
- /* * Indicates that the app fails to forward remote notification to FIRAuth .
283
+ /* * Indicates that the app fails to forward remote notification to Auth .
284
284
*/
285
285
FIRAuthErrorCodeNotificationNotForwarded = 17054 ,
286
286
0 commit comments