diff options
Diffstat (limited to '')
-rw-r--r-- | errors.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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") ) |