grafana/pkg/apimachinery/identity/error.go

14 lines
335 B
Go

package identity
import (
"errors"
"github.com/grafana/grafana/pkg/apimachinery/errutil"
)
var (
ErrInvalidTypedID = errutil.BadRequest("auth.identity.invalid-typed-id")
ErrNotIntIdentifier = errors.New("identifier is not an int64")
ErrIdentifierNotInitialized = errors.New("identifier is not initialized")
)