nim-serialization/serialization/errors.nim

8 lines
246 B
Nim
Raw Normal View History

type
SerializationError* = object of CatchableError
UnexpectedEofError* = object of SerializationError
method formatMsg*(err: ref SerializationError, filename: string): string {.base.} =
"Serialisation error while processing " & filename