mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-02-25 00:13:12 +00:00
11 lines
196 B
Nim
11 lines
196 B
Nim
|
|
type
|
|
NaxolotlError* = object of CatchableError
|
|
code*: ErrorCode
|
|
context*: string
|
|
|
|
ErrorCode* = enum
|
|
errDecryption
|
|
errMessageAuthentication
|
|
errInvalidInput
|
|
errProgram |