/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include #include #include #include using namespace Aws::Client; using namespace Aws::Utils; using namespace Aws::MainframeModernization; using namespace Aws::MainframeModernization::Model; namespace Aws { namespace MainframeModernization { template<> AWS_MAINFRAMEMODERNIZATION_API ConflictException MainframeModernizationError::GetModeledError() { assert(this->GetErrorType() == MainframeModernizationErrors::CONFLICT); return ConflictException(this->GetJsonPayload().View()); } template<> AWS_MAINFRAMEMODERNIZATION_API ThrottlingException MainframeModernizationError::GetModeledError() { assert(this->GetErrorType() == MainframeModernizationErrors::THROTTLING); return ThrottlingException(this->GetJsonPayload().View()); } template<> AWS_MAINFRAMEMODERNIZATION_API ServiceQuotaExceededException MainframeModernizationError::GetModeledError() { assert(this->GetErrorType() == MainframeModernizationErrors::SERVICE_QUOTA_EXCEEDED); return ServiceQuotaExceededException(this->GetJsonPayload().View()); } template<> AWS_MAINFRAMEMODERNIZATION_API ResourceNotFoundException MainframeModernizationError::GetModeledError() { assert(this->GetErrorType() == MainframeModernizationErrors::RESOURCE_NOT_FOUND); return ResourceNotFoundException(this->GetJsonPayload().View()); } template<> AWS_MAINFRAMEMODERNIZATION_API InternalServerException MainframeModernizationError::GetModeledError() { assert(this->GetErrorType() == MainframeModernizationErrors::INTERNAL_SERVER); return InternalServerException(this->GetJsonPayload().View()); } template<> AWS_MAINFRAMEMODERNIZATION_API ValidationException MainframeModernizationError::GetModeledError() { assert(this->GetErrorType() == MainframeModernizationErrors::VALIDATION); return ValidationException(this->GetJsonPayload().View()); } namespace MainframeModernizationErrorMapper { 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"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == CONFLICT_HASH) { return AWSError(static_cast(MainframeModernizationErrors::CONFLICT), false); } else if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(MainframeModernizationErrors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(MainframeModernizationErrors::INTERNAL_SERVER), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace MainframeModernizationErrorMapper } // namespace MainframeModernization } // namespace Aws