github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/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 )