Files
grafana/pkg/plugins/backendplugin/errors.go
T

15 lines
575 B
Go
Raw Normal View History

2021-03-08 07:02:49 +01:00
package backendplugin
import "errors"
var (
2022-06-03 13:06:27 +02:00
// ErrPluginNotRegistered error returned when plugin is not registered.
2021-03-08 07:02:49 +01:00
ErrPluginNotRegistered = errors.New("plugin not registered")
// ErrHealthCheckFailed error returned when health check failed.
ErrHealthCheckFailed = errors.New("health check failed")
// ErrPluginUnavailable error returned when plugin is unavailable.
ErrPluginUnavailable = errors.New("plugin unavailable")
// ErrMethodNotImplemented error returned when plugin method not implemented.
ErrMethodNotImplemented = errors.New("method not implemented")
)