Files
UltraGrid/src/ug_runtime_error.h
2015-02-19 14:32:38 +01:00

12 lines
254 B
C++

#include <cstdlib>
#include <stdexcept>
class ug_runtime_error : public std::runtime_error {
public:
ug_runtime_error(const std::string& what_arg, int code = EXIT_FAILURE);
int get_code() const noexcept;
private:
int m_code;
};