aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/download.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/download.cc')
-rw-r--r--src/libexpr/download.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/download.cc b/src/libexpr/download.cc
index 050e8d69c..b23e31967 100644
--- a/src/libexpr/download.cc
+++ b/src/libexpr/download.cc
@@ -100,7 +100,7 @@ struct Curl
CURLcode res = curl_easy_perform(curl);
if (res == CURLE_WRITE_ERROR && etag == expectedETag) return false;
if (res != CURLE_OK)
- throw Error(format("unable to download ‘%1%’: %2% (%3%)")
+ throw DownloadError(format("unable to download ‘%1%’: %2% (%3%)")
% url % curl_easy_strerror(res) % res);
long httpStatus = 0;