-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherrors.go
More file actions
16 lines (14 loc) · 740 Bytes
/
Copy patherrors.go
File metadata and controls
16 lines (14 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package lymbo
import "errors"
// Common errors returned by the lymbo package.
var (
ErrHandlerNotFound = errors.New("handler not found")
ErrLimitInvalid = errors.New("limit is invalid")
ErrTicketIDEmpty = errors.New("ticket ID is empty")
ErrTicketIDInvalid = errors.New("ticket ID is invalid")
ErrTicketNotFound = errors.New("ticket not found")
ErrInvalidStatusTransition = errors.New("invalid status transition")
ErrFinalizerInGroup = errors.New("finalizer must not be a member of the group it finalizes")
ErrTubesNotEnabled = errors.New("tubes are not enabled on this kharon instance")
ErrAlreadyRunning = errors.New("kharon: Run is already in progress")
)