orchard/internal/controller/store/errors.go

12 lines
191 B
Go

package store
import (
"errors"
)
var (
ErrNotFound = errors.New("store entry not found")
ErrConflict = errors.New("store conflict")
ErrStoreFailed = errors.New("store failed")
)