aboutsummaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--errors.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/errors.go b/errors.go
index 7c0a037..a65fdef 100644
--- a/errors.go
+++ b/errors.go
@@ -13,6 +13,8 @@ var (
ErrNotConnectedServer = errors.New("not connected server")
ErrSendToSelf = errors.New("attempt to send message to self")
ErrUIDBusy = errors.New("too many busy uids")
- ErrInconsistent = errors.New("inconsistent state")
ErrCallState = errors.New("invalid call state")
+ ErrInconsistentGlobal = errors.New("inconsistent global state")
+ ErrInconsistentClient = errors.New("inconsistent client state")
+ ErrRemoteClient = errors.New("operation not supported for a remote client")
)