-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
98 lines (82 loc) · 3.54 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package chimesdkmeetings
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeBadRequestException for service response error code
// "BadRequestException".
//
// The input parameters don't match the service's restrictions.
ErrCodeBadRequestException = "BadRequestException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// Multiple instances of the same request have been made simultaneously.
ErrCodeConflictException = "ConflictException"
// ErrCodeForbiddenException for service response error code
// "ForbiddenException".
//
// The client is permanently forbidden from making the request.
ErrCodeForbiddenException = "ForbiddenException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// The request exceeds the resource limit.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodeNotFoundException for service response error code
// "NotFoundException".
//
// One or more of the resources in the request does not exist in the system.
ErrCodeNotFoundException = "NotFoundException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The resource that you want to tag couldn't be found.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceFailureException for service response error code
// "ServiceFailureException".
//
// The service encountered an unexpected error.
ErrCodeServiceFailureException = "ServiceFailureException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// The service is currently unavailable.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// The number of customer requests exceeds the request rate limit.
ErrCodeThrottlingException = "ThrottlingException"
// ErrCodeTooManyTagsException for service response error code
// "TooManyTagsException".
//
// Too many tags were added to the specified resource.
ErrCodeTooManyTagsException = "TooManyTagsException"
// ErrCodeUnauthorizedException for service response error code
// "UnauthorizedException".
//
// The user isn't authorized to request a resource.
ErrCodeUnauthorizedException = "UnauthorizedException"
// ErrCodeUnprocessableEntityException for service response error code
// "UnprocessableEntityException".
//
// The request was well-formed but was unable to be followed due to semantic
// errors.
ErrCodeUnprocessableEntityException = "UnprocessableEntityException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"BadRequestException": newErrorBadRequestException,
"ConflictException": newErrorConflictException,
"ForbiddenException": newErrorForbiddenException,
"LimitExceededException": newErrorLimitExceededException,
"NotFoundException": newErrorNotFoundException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceFailureException": newErrorServiceFailureException,
"ServiceUnavailableException": newErrorServiceUnavailableException,
"ThrottlingException": newErrorThrottlingException,
"TooManyTagsException": newErrorTooManyTagsException,
"UnauthorizedException": newErrorUnauthorizedException,
"UnprocessableEntityException": newErrorUnprocessableEntityException,
}