open-nomad/plugins/base/structs/errors.go

13 lines
211 B
Go

package structs
import "errors"
const (
errPluginShutdown = "plugin is shut down"
)
var (
// ErrPluginShutdown is returned when the plugin has shutdown.
ErrPluginShutdown = errors.New(errPluginShutdown)
)