errors.gno

0.43 Kb ยท 10 lines
 1package lifetime
 2
 3import "errors"
 4
 5var (
 6	ErrNoSub         = errors.New("lifetime subscription: no active subscription found")
 7	ErrAmt           = errors.New("lifetime subscription: payment amount does not match the required subscription amount")
 8	ErrAlreadySub    = errors.New("lifetime subscription: this address already has an active lifetime subscription")
 9	ErrNotAuthorized = errors.New("lifetime subscription: action not authorized")
10)