about summary refs log tree commit diff
path: root/src/libexpr
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/nixexpr.hh2
-rw-r--r--src/libexpr/primops.cc4
2 files changed, 0 insertions, 6 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh
index b8d0929285fe..9c631d093bf0 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 fecaf37b6ed3..366911b54dcf 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());