open-nomad/plugins/base/structs/errors.go
Alex Dadgar c9825a9c36 recover
2019-01-07 14:49:40 -08:00

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)
)