File: //opt/go/pkg/mod/github.com/aws/aws-sdk-go@v1.50.8/service/forecastservice/errors.go
// 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,
}