1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 09:23:38 +02:00

Exceptions

- Added new enum member `NICKNAME_TOO_LONG` to `ErrorType`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-25 13:35:11 +02:00
parent 9bd8c2814c
commit 1015a4ec1c

View File

@ -71,7 +71,13 @@ public enum ErrorType
/**
* If a key-lookup in the ConnInfo failed
*/
DB_KEY_NOT_FOUND
DB_KEY_NOT_FOUND,
/**
* If the requested nickname (via /NICK) is
* too long
*/
NICKNAME_TOO_LONG
}
/**