Nix  2.93.0-dev
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
4#include <exception>
5
6namespace nix {
7
11class Exit : public std::exception
12{
13public:
14 int status;
15 Exit() : status(0) { }
16 explicit Exit(int status) : status(status) { }
17 virtual ~Exit();
18};
19
20}
Definition exit.hh:12