-
Notifications
You must be signed in to change notification settings - Fork 202
/
errors.go
31 lines (23 loc) · 1012 Bytes
/
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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package csm
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeInternalServiceException for service response error code
// "InternalServiceException".
ErrCodeInternalServiceException = "InternalServiceException"
// ErrCodeInvalidRequestException for service response error code
// "InvalidRequestException".
ErrCodeInvalidRequestException = "InvalidRequestException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"InternalServiceException": newErrorInternalServiceException,
"InvalidRequestException": newErrorInvalidRequestException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
}