/** * 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::CodeGuruReviewer; namespace Aws { namespace CodeGuruReviewer { namespace CodeGuruReviewerErrorMapper { static const int CONFLICT_HASH = HashingUtils::HashString("ConflictException"); static const int NOT_FOUND_HASH = HashingUtils::HashString("NotFoundException"); static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == CONFLICT_HASH) { return AWSError(static_cast(CodeGuruReviewerErrors::CONFLICT), false); } else if (hashCode == NOT_FOUND_HASH) { return AWSError(static_cast(CodeGuruReviewerErrors::NOT_FOUND), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(CodeGuruReviewerErrors::INTERNAL_SERVER), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace CodeGuruReviewerErrorMapper } // namespace CodeGuruReviewer } // namespace Aws