-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
57 lines (47 loc) · 2.08 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package forecastservice
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeInvalidInputException for service response error code
// "InvalidInputException".
//
// We can't process the request because it includes an invalid value or a value
// that exceeds the valid range.
ErrCodeInvalidInputException = "InvalidInputException"
// ErrCodeInvalidNextTokenException for service response error code
// "InvalidNextTokenException".
//
// The token is not valid. Tokens expire after 24 hours.
ErrCodeInvalidNextTokenException = "InvalidNextTokenException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// The limit on the number of resources per account has been exceeded.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodeResourceAlreadyExistsException for service response error code
// "ResourceAlreadyExistsException".
//
// There is already a resource with this name. Try again with a different name.
ErrCodeResourceAlreadyExistsException = "ResourceAlreadyExistsException"
// ErrCodeResourceInUseException for service response error code
// "ResourceInUseException".
//
// The specified resource is in use.
ErrCodeResourceInUseException = "ResourceInUseException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// We can't find a resource with that Amazon Resource Name (ARN). Check the
// ARN and try again.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"InvalidInputException": newErrorInvalidInputException,
"InvalidNextTokenException": newErrorInvalidNextTokenException,
"LimitExceededException": newErrorLimitExceededException,
"ResourceAlreadyExistsException": newErrorResourceAlreadyExistsException,
"ResourceInUseException": newErrorResourceInUseException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
}