Files
steampipe/constants/errors.go
2021-08-18 16:53:18 +01:00

10 lines
306 B
Go

package constants
// EEXISTS :: universal error string to denote that a resource already exists
const EEXISTS = "EEXISTS"
// ENOTEXISTS :: universal error string to denote that a resource does not exists
const ENOTEXISTS = "ENOTEXISTS"
const PluginCrashErrorSubString = "error reading from server: EOF"