Skip to content

Commit

Permalink
Merge pull request #28 from ClickHouse/vitlibar-patch-add-authenticat…
Browse files Browse the repository at this point in the history
…ion-required-to-error-list

Add AuthenticationRequered to the list of core error
  • Loading branch information
vitlibar authored Dec 3, 2024
2 parents d5450d7 + e04596b commit 71169ae
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 71169ae

Please sign in to comment.