/** * 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::Honeycode; namespace Aws { namespace Honeycode { namespace HoneycodeErrorMapper { static const int SERVICE_QUOTA_EXCEEDED_HASH = HashingUtils::HashString("ServiceQuotaExceededException"); static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException"); static const int AUTOMATION_EXECUTION_TIMEOUT_HASH = HashingUtils::HashString("AutomationExecutionTimeoutException"); static const int AUTOMATION_EXECUTION_HASH = HashingUtils::HashString("AutomationExecutionException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(HoneycodeErrors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(HoneycodeErrors::INTERNAL_SERVER), false); } else if (hashCode == AUTOMATION_EXECUTION_TIMEOUT_HASH) { return AWSError(static_cast(HoneycodeErrors::AUTOMATION_EXECUTION_TIMEOUT), false); } else if (hashCode == AUTOMATION_EXECUTION_HASH) { return AWSError(static_cast(HoneycodeErrors::AUTOMATION_EXECUTION), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace HoneycodeErrorMapper } // namespace Honeycode } // namespace Aws