mirror of
https://github.com/status-im/nim-serialization.git
synced 2025-01-17 15:30:57 +00:00
8 lines
246 B
Nim
8 lines
246 B
Nim
type
|
|
SerializationError* = object of CatchableError
|
|
UnexpectedEofError* = object of SerializationError
|
|
|
|
method formatMsg*(err: ref SerializationError, filename: string): string {.base.} =
|
|
"Serialisation error while processing " & filename
|
|
|