1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 12:41:15 +02:00

Add UnimplementedError to ease grepping for these

This commit is contained in:
Carlo Nucera 2020-07-20 14:13:37 -04:00
parent 745a03cef5
commit 362ae93851
4 changed files with 4 additions and 3 deletions

View file

@ -121,7 +121,7 @@ struct GitInputScheme : InputScheme
args.push_back(*ref);
}
if (input.getRev()) throw Error("cloning a specific revision is not implemented");
if (input.getRev()) throw UnimplementedError("cloning a specific revision is not implemented");
args.push_back(destDir);