/** * 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::AuditManager; using namespace Aws::AuditManager::Model; namespace Aws { namespace AuditManager { template<> AWS_AUDITMANAGER_API ResourceNotFoundException AuditManagerError::GetModeledError() { assert(this->GetErrorType() == AuditManagerErrors::RESOURCE_NOT_FOUND); return ResourceNotFoundException(this->GetJsonPayload().View()); } template<> AWS_AUDITMANAGER_API ValidationException AuditManagerError::GetModeledError() { assert(this->GetErrorType() == AuditManagerErrors::VALIDATION); return ValidationException(this->GetJsonPayload().View()); } namespace AuditManagerErrorMapper { static const int SERVICE_QUOTA_EXCEEDED_HASH = HashingUtils::HashString("ServiceQuotaExceededException"); static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(AuditManagerErrors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(AuditManagerErrors::INTERNAL_SERVER), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace AuditManagerErrorMapper } // namespace AuditManager } // namespace Aws