github.com/ferranbt/nomad@v0.9.3-0.20190607002617-85c449b7667c/plugins/base/structs/errors.go (about)

     1  package structs
     2  
     3  import "errors"
     4  
     5  const (
     6  	errPluginShutdown = "plugin is shut down"
     7  )
     8  
     9  var (
    10  	// ErrPluginShutdown is returned when the plugin has shutdown.
    11  	ErrPluginShutdown = errors.New(errPluginShutdown)
    12  )