mirror of
https://github.com/logos-storage/logos-storage-nim-validator.git
synced 2026-01-02 21:43:06 +00:00
10 lines
211 B
Nim
10 lines
211 B
Nim
import ../basics
|
|
|
|
type NetworkError* = object of IOError
|
|
|
|
template convertNetworkErrors*(body): untyped =
|
|
try:
|
|
body
|
|
except TransportError as error:
|
|
raise newException(NetworkError, error.msg, error)
|