mirror of
https://github.com/NixOS/nix.git
synced 2025-12-03 07:31:00 +01:00
This will facilitate breaking up Nix into multiple packages for each component with Meson.
19 lines
271 B
C++
19 lines
271 B
C++
#pragma once
|
|
|
|
#include <exception>
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* Exit the program with a given exit code.
|
|
*/
|
|
class Exit : public std::exception
|
|
{
|
|
public:
|
|
int status;
|
|
Exit() : status(0) { }
|
|
explicit Exit(int status) : status(status) { }
|
|
virtual ~Exit();
|
|
};
|
|
|
|
}
|