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
6
namespace
nix {
7
11
class
Exit
:
public
std::exception
12
{
13
public
:
14
int
status;
15
Exit
() : status(0) { }
16
explicit
Exit
(
int
status) : status(status) { }
17
virtual
~Exit
();
18
};
19
20
}
nix::Exit
Definition
exit.hh:12
lix
libutil
exit.hh
Generated by
1.10.0