nim-serialization/serialization/errors.nim

8 lines
254 B
Nim

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