Files
steampipe/pkg/constants/errors.go

8 lines
246 B
Go

package constants
// EEXISTS is the universal error string to denote that a resource already exists
const EEXISTS = "EEXISTS"
// ENOTEXISTS is the universal error string to denote that a resource does not exists
const ENOTEXISTS = "ENOTEXISTS"