aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorCarlo Nucera <carlo.nucera@protonmail.com>2020-07-20 14:17:25 -0400
committerCarlo Nucera <carlo.nucera@protonmail.com>2020-07-20 14:17:25 -0400
commit6357b1b0fb33bfa26f1d44326fc01d0c86d86f2c (patch)
treeedf9a2809fe01a42e9250cf45faeb9506eeb377f /src/libstore/local-store.cc
parent007bf6d17a3e081d654d407be60571d37e39c48a (diff)
Add another Unimplemented case
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 9117ff384..e07b33897 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -578,7 +578,7 @@ void LocalStore::checkDerivationOutputs(const StorePath & drvPath, const Derivat
envHasRightPath(path, i.first);
},
[&](DerivationOutputFloating _) {
- throw Error("Floating CA output derivations are not yet implemented");
+ throw UnimplementedError("Floating CA output derivations are not yet implemented");
},
}, i.second.output);
}