From 9d346412eb6198a082f8269ab2f1727786978a7f Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 26 Mar 2019 12:29:45 +0200 Subject: [PATCH] All async errors are recoverable --- chronos/asyncloop.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chronos/asyncloop.nim b/chronos/asyncloop.nim index 263caf34..f68fc176 100644 --- a/chronos/asyncloop.nim +++ b/chronos/asyncloop.nim @@ -173,7 +173,7 @@ else: MSG_NOSIGNAL type - AsyncError* = object of Exception + AsyncError* = object of CatchableError ## Generic async exception AsyncTimeoutError* = object of AsyncError ## Timeout exception