74 lines
2.4 KiB
C++
74 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/core/client/AWSError.h>
|
|
#include <aws/core/utils/HashingUtils.h>
|
|
#include <aws/identitystore/IdentityStoreErrors.h>
|
|
#include <aws/identitystore/model/ThrottlingException.h>
|
|
#include <aws/identitystore/model/ResourceNotFoundException.h>
|
|
#include <aws/identitystore/model/InternalServerException.h>
|
|
#include <aws/identitystore/model/ValidationException.h>
|
|
#include <aws/identitystore/model/AccessDeniedException.h>
|
|
|
|
using namespace Aws::Client;
|
|
using namespace Aws::Utils;
|
|
using namespace Aws::IdentityStore;
|
|
using namespace Aws::IdentityStore::Model;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IdentityStore
|
|
{
|
|
template<> AWS_IDENTITYSTORE_API ThrottlingException IdentityStoreError::GetModeledError()
|
|
{
|
|
assert(this->GetErrorType() == IdentityStoreErrors::THROTTLING);
|
|
return ThrottlingException(this->GetJsonPayload().View());
|
|
}
|
|
|
|
template<> AWS_IDENTITYSTORE_API ResourceNotFoundException IdentityStoreError::GetModeledError()
|
|
{
|
|
assert(this->GetErrorType() == IdentityStoreErrors::RESOURCE_NOT_FOUND);
|
|
return ResourceNotFoundException(this->GetJsonPayload().View());
|
|
}
|
|
|
|
template<> AWS_IDENTITYSTORE_API InternalServerException IdentityStoreError::GetModeledError()
|
|
{
|
|
assert(this->GetErrorType() == IdentityStoreErrors::INTERNAL_SERVER);
|
|
return InternalServerException(this->GetJsonPayload().View());
|
|
}
|
|
|
|
template<> AWS_IDENTITYSTORE_API ValidationException IdentityStoreError::GetModeledError()
|
|
{
|
|
assert(this->GetErrorType() == IdentityStoreErrors::VALIDATION);
|
|
return ValidationException(this->GetJsonPayload().View());
|
|
}
|
|
|
|
template<> AWS_IDENTITYSTORE_API AccessDeniedException IdentityStoreError::GetModeledError()
|
|
{
|
|
assert(this->GetErrorType() == IdentityStoreErrors::ACCESS_DENIED);
|
|
return AccessDeniedException(this->GetJsonPayload().View());
|
|
}
|
|
|
|
namespace IdentityStoreErrorMapper
|
|
{
|
|
|
|
static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException");
|
|
|
|
|
|
AWSError<CoreErrors> GetErrorForName(const char* errorName)
|
|
{
|
|
int hashCode = HashingUtils::HashString(errorName);
|
|
|
|
if (hashCode == INTERNAL_SERVER_HASH)
|
|
{
|
|
return AWSError<CoreErrors>(static_cast<CoreErrors>(IdentityStoreErrors::INTERNAL_SERVER), false);
|
|
}
|
|
return AWSError<CoreErrors>(CoreErrors::UNKNOWN, false);
|
|
}
|
|
|
|
} // namespace IdentityStoreErrorMapper
|
|
} // namespace IdentityStore
|
|
} // namespace Aws
|