mirror of https://github.com/vacp2p/nim-libp2p.git
use correct names
This commit is contained in:
parent
12702e2cd2
commit
f3cc6fbef0
|
@ -22,8 +22,8 @@ type
|
|||
LPStreamWriteError* = object of LPStreamError
|
||||
par*: ref Exception
|
||||
|
||||
proc newAsyncStreamReadError*(p: ref Exception): ref Exception {.inline.} =
|
||||
var w = newException(AsyncStreamReadError, "Read stream failed")
|
||||
proc newLPStreamReadError*(p: ref Exception): ref Exception {.inline.} =
|
||||
var w = newException(LPStreamReadError, "Read stream failed")
|
||||
w.msg = w.msg & ", originated from [" & $p.name & "] " & p.msg
|
||||
w.par = p
|
||||
result = w
|
||||
|
|
Loading…
Reference in New Issue