Skip to content

Commit

Permalink
Add AuthenticationRequered to the list of core error
Browse files Browse the repository at this point in the history
  • Loading branch information
vitlibar authored Dec 3, 2024
1 parent d5450d7 commit e04596b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/aws-cpp-sdk-core/source/client/CoreErrors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ void CoreErrorsMapper::InitCoreErrorsMapper()
s_CoreErrorsMapper->emplace("ValidationError", AWSError<CoreErrors>(CoreErrors::VALIDATION, false));
s_CoreErrorsMapper->emplace("AccessDeniedException", AWSError<CoreErrors>(CoreErrors::ACCESS_DENIED, false));
s_CoreErrorsMapper->emplace("AccessDenied", AWSError<CoreErrors>(CoreErrors::ACCESS_DENIED, false));
s_CoreErrorsMapper->emplace("AuthenticationRequired", AWSError<CoreErrors>(CoreErrors::ACCESS_DENIED, false));
s_CoreErrorsMapper->emplace("ResourceNotFoundException", AWSError<CoreErrors>(CoreErrors::RESOURCE_NOT_FOUND, false));
s_CoreErrorsMapper->emplace("ResourceNotFound", AWSError<CoreErrors>(CoreErrors::RESOURCE_NOT_FOUND, false));
s_CoreErrorsMapper->emplace("UnrecognizedClientException", AWSError<CoreErrors>(CoreErrors::UNRECOGNIZED_CLIENT, false));
Expand Down

0 comments on commit e04596b

Please sign in to comment.