/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Client; using namespace Aws::Utils; using namespace Aws::SSO; namespace Aws { namespace SSO { namespace SSOErrorMapper { static const int UNAUTHORIZED_HASH = HashingUtils::HashString("UnauthorizedException"); static const int TOO_MANY_REQUESTS_HASH = HashingUtils::HashString("TooManyRequestsException"); static const int INVALID_REQUEST_HASH = HashingUtils::HashString("InvalidRequestException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == UNAUTHORIZED_HASH) { return AWSError(static_cast(SSOErrors::UNAUTHORIZED), false); } else if (hashCode == TOO_MANY_REQUESTS_HASH) { return AWSError(static_cast(SSOErrors::TOO_MANY_REQUESTS), true); } else if (hashCode == INVALID_REQUEST_HASH) { return AWSError(static_cast(SSOErrors::INVALID_REQUEST), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace SSOErrorMapper } // namespace SSO } // namespace Aws