You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/event/errors.go

19 lines
542 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package event
import (
"errors"
)
var (
ErrInvalidParameter = errors.New("invalid parameter")
ErrMaxRetries = errors.New("too many retries")
ErrIo = errors.New("error during io operation")
ErrRecordNotFound = errors.New("record not found")
// ErrInvalidOperation represents an error when an operation cannot be completed
// because the thing being operated on is in an invalid state
ErrInvalidOperation = errors.New("invalid operation")
)