Add missing rethrows in conditional exception handlers

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2022-06-10 10:52:41 -07:00
parent 45ebaab665
commit 754cd53faf
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -69,6 +69,7 @@ protected:
} catch (SysError & e) {
if (e.errNo == ENOENT)
throw NoSuchBinaryCacheFile("file '%s' does not exist in binary cache", path);
throw;
}
}