[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
24/376: Drop ImportError and FindError
From: |
Ludovic Courtès |
Subject: |
24/376: Drop ImportError and FindError |
Date: |
Wed, 28 Jan 2015 22:03:47 +0000 |
civodul pushed a commit to tag 1.8
in repository guix.
commit 0960d674d48808eaaa3475899f45cfd6c7c3e51d
Author: Eelco Dolstra <address@hidden>
Date: Thu Jun 12 13:00:54 2014 +0200
Drop ImportError and FindError
We're not catching these anywhere.
---
src/libexpr/nixexpr.hh | 2 --
src/libexpr/primops.cc | 4 ----
2 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh
index b8d0929..9c631d0 100644
--- a/src/libexpr/nixexpr.hh
+++ b/src/libexpr/nixexpr.hh
@@ -15,8 +15,6 @@ MakeError(AssertionError, EvalError)
MakeError(ThrownError, AssertionError)
MakeError(Abort, EvalError)
MakeError(TypeError, EvalError)
-MakeError(ImportError, EvalError) // error building an imported derivation
-MakeError(FindError, EvalError) // error building a nix-path component
MakeError(UndefinedVarError, Error)
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index fecaf37..366911b 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -81,8 +81,6 @@ static void prim_scopedImport(EvalState & state, const Pos &
pos, Value * * args
} catch (InvalidPathError & e) {
throw EvalError(format("cannot import `%1%', since path `%2%' is not
valid, at %3%")
% path % e.path % pos);
- } catch (Error & e) {
- throw ImportError(e.msg());
}
if (isStorePath(path) && store->isValidPath(path) && isDerivation(path)) {
@@ -701,8 +699,6 @@ static void prim_findFile(EvalState & state, const Pos &
pos, Value * * args, Va
} catch (InvalidPathError & e) {
throw EvalError(format("cannot find `%1%', since path `%2%' is not
valid, at %3%")
% path % e.path % pos);
- } catch (Error & e) {
- throw FindError(e.msg());
}
mkPath(v, state.findFile(searchPath, path).c_str());
- 18/376: Print a warning when loading a large path into memory, (continued)
- 18/376: Print a warning when loading a large path into memory, Ludovic Courtès, 2015/01/28
- 19/376: Report daemon OOM better, Ludovic Courtès, 2015/01/28
- 22/376: Share code between scopedImport and import, Ludovic Courtès, 2015/01/28
- 28/376: Only add the importNative primop if the allow-arbitrary-code-during-evaluation option is true (default false), Ludovic Courtès, 2015/01/28
- 26/376: Don't use member initialisers, Ludovic Courtès, 2015/01/28
- 27/376: Add importNative primop, Ludovic Courtès, 2015/01/28
- 29/376: Merge branch 'shlevy-import-native', Ludovic Courtès, 2015/01/28
- 20/376: == operator: Ignore string context, Ludovic Courtès, 2015/01/28
- 30/376: allow-arbitrary-code-during-evaluation -> allow-unsafe-native-code-during-evaluation, Ludovic Courtès, 2015/01/28
- 32/376: Style fix, Ludovic Courtès, 2015/01/28
- 24/376: Drop ImportError and FindError,
Ludovic Courtès <=
- 31/376: Add `--json` argument to `nix-instantiate`, Ludovic Courtès, 2015/01/28
- 33/376: Manual: html -> xhtml, Ludovic Courtès, 2015/01/28
- 25/376: Fix bogus warnings about dumping large paths, Ludovic Courtès, 2015/01/28
- 36/376: Fix compilation error on some versions of GCC, Ludovic Courtès, 2015/01/28
- 37/376: Add a test for the SSH substituter, Ludovic Courtès, 2015/01/28
- 38/376: Fix security hole in ‘nix-store --serve’, Ludovic Courtès, 2015/01/28
- 35/376: Don't build on Ubuntu 10.10, Ludovic Courtès, 2015/01/28
- 34/376: Add builtin function ‘fromJSON’, Ludovic Courtès, 2015/01/28
- 41/376: nix-copy-closure: Restore compression and the progress viewer, Ludovic Courtès, 2015/01/28
- 40/376: Remove maybeVfork, Ludovic Courtès, 2015/01/28