forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
43 lines (35 loc) · 1.27 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package devicefarm
const (
// ErrCodeArgumentException for service response error code
// "ArgumentException".
//
// An invalid argument was specified.
ErrCodeArgumentException = "ArgumentException"
// ErrCodeIdempotencyException for service response error code
// "IdempotencyException".
//
// An entity with the same name already exists.
ErrCodeIdempotencyException = "IdempotencyException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// A limit was exceeded.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodeNotEligibleException for service response error code
// "NotEligibleException".
//
// Exception gets thrown when a user is not eligible to perform the specified
// transaction.
ErrCodeNotEligibleException = "NotEligibleException"
// ErrCodeNotFoundException for service response error code
// "NotFoundException".
//
// The specified entity was not found.
ErrCodeNotFoundException = "NotFoundException"
// ErrCodeServiceAccountException for service response error code
// "ServiceAccountException".
//
// There was a problem with the service account.
ErrCodeServiceAccountException = "ServiceAccountException"
)