aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derivations.hh
diff options
context:
space:
mode:
authorCarlo Nucera <carlo.nucera@protonmail.com>2020-07-20 14:13:37 -0400
committerCarlo Nucera <carlo.nucera@protonmail.com>2020-07-20 14:13:37 -0400
commit362ae93851830ecce6ade70462fe991cc522d27b (patch)
treedd063257ee3a64df47f672d85b9d2af6d6ac002a /src/libstore/derivations.hh
parent745a03cef5977e3474dcf8ef43cb721a6a7cac8e (diff)
Add UnimplementedError to ease grepping for these
Diffstat (limited to 'src/libstore/derivations.hh')
-rw-r--r--src/libstore/derivations.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh
index 36ac09210..c8f8d10dc 100644
--- a/src/libstore/derivations.hh
+++ b/src/libstore/derivations.hh
@@ -44,7 +44,7 @@ struct DerivationOutput
/* DEPRECATED: Remove after CA drvs are fully implemented */
StorePath path(const Store & store, std::string_view drvName) const {
auto p = pathOpt(store, drvName);
- if (!p) throw Error("floating content-addressed derivations are not yet implemented");
+ if (!p) throw UnimplementedError("floating content-addressed derivations are not yet implemented");
return *p;
}
};