1package egoscale
2
3import "errors"
4
5// ErrNotFound represents an error indicating a non-existent resource.
6var ErrNotFound = errors.New("resource not found")
7
8// ErrTooManyFound represents an error indicating multiple results found for a single resource.
9var ErrTooManyFound = errors.New("multiple resources found")
10
11// ErrInvalidRequest represents an error indicating that the caller's request is invalid.
12var ErrInvalidRequest = errors.New("invalid request")
13
14// ErrAPIError represents an error indicating an API-side issue.
15var ErrAPIError = errors.New("API error")
16