84 lines
2.4 KiB
C
84 lines
2.4 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include <aws/core/client/AWSError.h>
|
|||
|
|
#include <aws/core/client/CoreErrors.h>
|
|||
|
|
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace DeviceFarm
|
|||
|
|
{
|
|||
|
|
enum class DeviceFarmErrors
|
|||
|
|
{
|
|||
|
|
//From Core//
|
|||
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
INCOMPLETE_SIGNATURE = 0,
|
|||
|
|
INTERNAL_FAILURE = 1,
|
|||
|
|
INVALID_ACTION = 2,
|
|||
|
|
INVALID_CLIENT_TOKEN_ID = 3,
|
|||
|
|
INVALID_PARAMETER_COMBINATION = 4,
|
|||
|
|
INVALID_QUERY_PARAMETER = 5,
|
|||
|
|
INVALID_PARAMETER_VALUE = 6,
|
|||
|
|
MISSING_ACTION = 7, // SDK should never allow
|
|||
|
|
MISSING_AUTHENTICATION_TOKEN = 8, // SDK should never allow
|
|||
|
|
MISSING_PARAMETER = 9, // SDK should never allow
|
|||
|
|
OPT_IN_REQUIRED = 10,
|
|||
|
|
REQUEST_EXPIRED = 11,
|
|||
|
|
SERVICE_UNAVAILABLE = 12,
|
|||
|
|
THROTTLING = 13,
|
|||
|
|
VALIDATION = 14,
|
|||
|
|
ACCESS_DENIED = 15,
|
|||
|
|
RESOURCE_NOT_FOUND = 16,
|
|||
|
|
UNRECOGNIZED_CLIENT = 17,
|
|||
|
|
MALFORMED_QUERY_STRING = 18,
|
|||
|
|
SLOW_DOWN = 19,
|
|||
|
|
REQUEST_TIME_TOO_SKEWED = 20,
|
|||
|
|
INVALID_SIGNATURE = 21,
|
|||
|
|
SIGNATURE_DOES_NOT_MATCH = 22,
|
|||
|
|
INVALID_ACCESS_KEY_ID = 23,
|
|||
|
|
REQUEST_TIMEOUT = 24,
|
|||
|
|
NETWORK_CONNECTION = 99,
|
|||
|
|
|
|||
|
|
UNKNOWN = 100,
|
|||
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
|
|||
|
|
ARGUMENT= static_cast<int>(Aws::Client::CoreErrors::SERVICE_EXTENSION_START_RANGE) + 1,
|
|||
|
|
CANNOT_DELETE,
|
|||
|
|
IDEMPOTENCY,
|
|||
|
|
INTERNAL_SERVICE,
|
|||
|
|
INVALID_OPERATION,
|
|||
|
|
LIMIT_EXCEEDED,
|
|||
|
|
NOT_ELIGIBLE,
|
|||
|
|
NOT_FOUND,
|
|||
|
|
SERVICE_ACCOUNT,
|
|||
|
|
TAG_OPERATION,
|
|||
|
|
TAG_POLICY,
|
|||
|
|
TOO_MANY_TAGS
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
class AWS_DEVICEFARM_API DeviceFarmError : public Aws::Client::AWSError<DeviceFarmErrors>
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DeviceFarmError() {}
|
|||
|
|
DeviceFarmError(const Aws::Client::AWSError<Aws::Client::CoreErrors>& rhs) : Aws::Client::AWSError<DeviceFarmErrors>(rhs) {}
|
|||
|
|
DeviceFarmError(Aws::Client::AWSError<Aws::Client::CoreErrors>&& rhs) : Aws::Client::AWSError<DeviceFarmErrors>(rhs) {}
|
|||
|
|
DeviceFarmError(const Aws::Client::AWSError<DeviceFarmErrors>& rhs) : Aws::Client::AWSError<DeviceFarmErrors>(rhs) {}
|
|||
|
|
DeviceFarmError(Aws::Client::AWSError<DeviceFarmErrors>&& rhs) : Aws::Client::AWSError<DeviceFarmErrors>(rhs) {}
|
|||
|
|
|
|||
|
|
template <typename T>
|
|||
|
|
T GetModeledError();
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace DeviceFarmErrorMapper
|
|||
|
|
{
|
|||
|
|
AWS_DEVICEFARM_API Aws::Client::AWSError<Aws::Client::CoreErrors> GetErrorForName(const char* errorName);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace DeviceFarm
|
|||
|
|
} // namespace Aws
|