Add PEER_NOT_FOUND case to StandardError enum

This commit is contained in:
netkas 2024-10-25 13:38:38 -04:00
parent 877297d945
commit 7073af234f

View file

@ -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
*