diff options
Diffstat (limited to 'include/error.hpp')
-rw-r--r-- | include/error.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/error.hpp b/include/error.hpp new file mode 100644 index 0000000..ef61c91 --- /dev/null +++ b/include/error.hpp @@ -0,0 +1,13 @@ +#ifndef ERROR_HPP_ +#define ERROR_HPP_ + +#include <string> +#include <iostream> + +inline void UserError(const std::string& why) +{ + std::cout << "User error: " << why << "!\n"; + abort(); +} + +#endif // ERROR_HPP_ |