Nix 2.93.3
Lix: A modern, delicious implementation of the Nix package manager; unstable internal interfaces
Loading...
Searching...
No Matches
exit.hh
Go to the documentation of this file.
1#pragma once
3
5
6namespace nix {
7
11class Exit : public BaseException
12{
13public:
14 int status;
15 Exit() : status(0) { }
16 explicit Exit(int status) : status(status) { }
17};
18
19}
Definition error.hh:103
This file defines two main structs/classes used in nix error handling.