grafana/pkg/services/dashboardsnapshots/errors.go
Marcus Efraimsson 040b7d2571
Chore: Add errutils helpers (#73577)
Add helpers for the errutil package in favor of errutil.NewBase.
2023-08-22 12:52:24 +02:00

8 lines
207 B
Go

package dashboardsnapshots
import (
"github.com/grafana/grafana/pkg/util/errutil"
)
var ErrBaseNotFound = errutil.NotFound("dashboardsnapshots.not-found", errutil.WithPublicMessage("Snapshot not found"))