forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
70 lines (58 loc) · 2.51 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package chimesdkidentity
import (
"github.com/aavshr/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".
//
// The request could not be processed because of conflict in the current state
// of the resource.
ErrCodeConflictException = "ConflictException"
// ErrCodeForbiddenException for service response error code
// "ForbiddenException".
//
// The client is permanently forbidden from making the request.
ErrCodeForbiddenException = "ForbiddenException"
// ErrCodeResourceLimitExceededException for service response error code
// "ResourceLimitExceededException".
//
// The request exceeds the resource limit.
ErrCodeResourceLimitExceededException = "ResourceLimitExceededException"
// 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"
// ErrCodeThrottledClientException for service response error code
// "ThrottledClientException".
//
// The client exceeded its request rate limit.
ErrCodeThrottledClientException = "ThrottledClientException"
// ErrCodeUnauthorizedClientException for service response error code
// "UnauthorizedClientException".
//
// The client is not currently authorized to make the request.
ErrCodeUnauthorizedClientException = "UnauthorizedClientException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"BadRequestException": newErrorBadRequestException,
"ConflictException": newErrorConflictException,
"ForbiddenException": newErrorForbiddenException,
"ResourceLimitExceededException": newErrorResourceLimitExceededException,
"ServiceFailureException": newErrorServiceFailureException,
"ServiceUnavailableException": newErrorServiceUnavailableException,
"ThrottledClientException": newErrorThrottledClientException,
"UnauthorizedClientException": newErrorUnauthorizedClientException,
}