1 #ifndef MSP_CORE_SYSTEMERROR_H_
2 #define MSP_CORE_SYSTEMERROR_H_
9 class system_error: public std::runtime_error
15 system_error(const std::string &, int = -1);
16 system_error(const std::string &, const std::string &);
17 virtual ~system_error() throw() { }
19 int code() const throw() { return code_; }
22 static std::string get_message(int);