AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FMSErrors.h
1
6#pragma once
7
8#include <aws/core/client/AWSError.h>
9#include <aws/core/client/CoreErrors.h>
10#include <aws/fms/FMS_EXPORTS.h>
11
12namespace Aws
13{
14namespace FMS
15{
16enum class FMSErrors
17{
18 //From Core//
27 MISSING_ACTION = 7, // SDK should never allow
28 MISSING_AUTHENTICATION_TOKEN = 8, // SDK should never allow
29 MISSING_PARAMETER = 9, // SDK should never allow
30 OPT_IN_REQUIRED = 10,
31 REQUEST_EXPIRED = 11,
33 THROTTLING = 13,
34 VALIDATION = 14,
35 ACCESS_DENIED = 15,
39 SLOW_DOWN = 19,
44 REQUEST_TIMEOUT = 24,
46
47 UNKNOWN = 100,
49
50 INTERNAL_ERROR= static_cast<int>(Aws::Client::CoreErrors::SERVICE_EXTENSION_START_RANGE) + 1,
55};
56
57class AWS_FMS_API FMSError : public Aws::Client::AWSError<FMSErrors>
58{
59public:
63 FMSError(const Aws::Client::AWSError<FMSErrors>& rhs) : Aws::Client::AWSError<FMSErrors>(rhs) {}
64 FMSError(Aws::Client::AWSError<FMSErrors>&& rhs) : Aws::Client::AWSError<FMSErrors>(rhs) {}
65
66 template <typename T>
68};
69
70namespace FMSErrorMapper
71{
73}
74
75} // namespace FMS
76} // namespace Aws
FMSError(const Aws::Client::AWSError< Aws::Client::CoreErrors > &rhs)
Definition FMSErrors.h:61
FMSError(Aws::Client::AWSError< FMSErrors > &&rhs)
Definition FMSErrors.h:64
FMSError(Aws::Client::AWSError< Aws::Client::CoreErrors > &&rhs)
Definition FMSErrors.h:62
FMSError(const Aws::Client::AWSError< FMSErrors > &rhs)
Definition FMSErrors.h:63
AWS_FMS_API Aws::Client::AWSError< Aws::Client::CoreErrors > GetErrorForName(const char *errorName)