Skip to content

Commit 9bc8a74

Browse files
committed
Add new PSSO error
1 parent ba8a55c commit 9bc8a74

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

MSAL/src/MSALErrorConverter.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ + (void)initialize
115115
@(MSIDErrorJITErrorHandlingConfigNotFound) : @(MSALErrorJITErrorHandlingConfigNotFound),
116116
@(MSIDErrorPSSOBiometricPolicyMismatch) : @(MSALErrorPSSOBiometricPolicyMismatch),
117117
@(MSIDErrorPSSOInvalidPasskeyExtension) : @(MSALErrorPSSOInvalidPasskeyExtension),
118+
@(MSIDErrorPSSOSaveLoginConfigFailure) :@(MSALErrorPSSOSaveLoginConfigFailure),
118119

119120
// Oauth2 errors
120121
@(MSIDErrorServerOauth) : @(MSALInternalErrorAuthorizationFailed),

MSAL/src/public/MSALError.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,5 +534,11 @@ typedef NS_ENUM(NSInteger, MSALInternalError)
534534
/**
535535
PSSO passkey - Invalid Passkey extension trying to access passkey
536536
*/
537-
MSALErrorPSSOInvalidPasskeyExtension = -42740,
537+
MSALErrorPSSOInvalidPasskeyExtension = -42740,
538+
539+
/**
540+
PSSO save login config failure
541+
*/
542+
543+
MSALErrorPSSOSaveLoginConfigFailure = -42741,
538544
};

0 commit comments

Comments
 (0)