github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/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 )