Files
grafana/pkg/apimachinery/identity/error.go
Karl Persson 3990637af9 IAM: remove duplicated functions (#96989)
* Remove duplicated function and use the one provided by claims package
2024-11-26 09:22:45 +01:00

14 lines
334 B
Go

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