Add PEER_NOT_FOUND case to StandardError enum
This commit is contained in:
parent
877297d945
commit
7073af234f
1 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,9 @@ enum StandardError : int
|
|||
case SESSION_NOT_FOUND = -3001;
|
||||
case UNSUPPORTED_AUTHENTICATION_TYPE = -3002;
|
||||
|
||||
// General Error Messages
|
||||
case PEER_NOT_FOUND = -4000;
|
||||
|
||||
/**
|
||||
* Returns the default generic message for the error
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue