/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::Client; using namespace Aws::Utils; using namespace Aws::ResourceExplorer2; using namespace Aws::ResourceExplorer2::Model; namespace Aws { namespace ResourceExplorer2 { template<> AWS_RESOURCEEXPLORER2_API ServiceQuotaExceededException ResourceExplorer2Error::GetModeledError() { assert(this->GetErrorType() == ResourceExplorer2Errors::SERVICE_QUOTA_EXCEEDED); return ServiceQuotaExceededException(this->GetJsonPayload().View()); } template<> AWS_RESOURCEEXPLORER2_API ValidationException ResourceExplorer2Error::GetModeledError() { assert(this->GetErrorType() == ResourceExplorer2Errors::VALIDATION); return ValidationException(this->GetJsonPayload().View()); } namespace ResourceExplorer2ErrorMapper { static const int CONFLICT_HASH = HashingUtils::HashString("ConflictException"); static const int SERVICE_QUOTA_EXCEEDED_HASH = HashingUtils::HashString("ServiceQuotaExceededException"); static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException"); static const int UNAUTHORIZED_HASH = HashingUtils::HashString("UnauthorizedException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == CONFLICT_HASH) { return AWSError(static_cast(ResourceExplorer2Errors::CONFLICT), false); } else if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(ResourceExplorer2Errors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(ResourceExplorer2Errors::INTERNAL_SERVER), false); } else if (hashCode == UNAUTHORIZED_HASH) { return AWSError(static_cast(ResourceExplorer2Errors::UNAUTHORIZED), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace ResourceExplorer2ErrorMapper } // namespace ResourceExplorer2 } // namespace Aws