grafana/pkg/services/authn/error.go

9 lines
275 B
Go
Raw Normal View History

package authn
import "github.com/grafana/grafana/pkg/util/errutil"
var (
ErrClientNotConfigured = errutil.NewBase(errutil.StatusBadRequest, "auth.client.notConfigured")
ErrUnsupportedIdentity = errutil.NewBase(errutil.StatusNotImplemented, "auth.identity.unsupported")
)