aboutsummaryrefslogtreecommitdiff
path: root/src/wrapper/curl.nim
diff options
context:
space:
mode:
authorBenjamin Shirley-Quirk2020-08-04 21:42:10 +0000
committerBenjamin Shirley-Quirk2020-08-04 21:42:10 +0000
commit4fad58d7be80d90058cf627a2f9bccbd6016e72b (patch)
tree0e11352c52a92338576788f39e644e8539e3202c /src/wrapper/curl.nim
parent31108f15f5d1e9cc88ff4207658bf5155b184108 (diff)
removed Exception warnings, changed Exceptions to CatchableErrors
Diffstat (limited to 'src/wrapper/curl.nim')
-rw-r--r--src/wrapper/curl.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapper/curl.nim b/src/wrapper/curl.nim
index 79468a9..9abb341 100644
--- a/src/wrapper/curl.nim
+++ b/src/wrapper/curl.nim
@@ -18,7 +18,7 @@ type
url = 10002,
writeFunction = 20011
- CurlError* = object of Exception
+ CurlError* = object of CatchableError
{.passL: "-lcurl".}