1 #ifndef MSP_CORE_SYSTEMERROR_H_
2 #define MSP_CORE_SYSTEMERROR_H_
6 #include "mspcore_api.h"
10 class MSPCORE_API system_error: public std::runtime_error
16 system_error(const std::string &, int = -1);
17 system_error(const std::string &, const std::string &);
19 int code() const noexcept { return m_code; }
22 static std::string get_message(int);