X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fcore%2Fsystemerror.h;h=c2387fad828b2de624ef502b58f6cd031a5c0666;hb=HEAD;hp=d0a5634cf38e04cc5d70e2df3e677c622878ed97;hpb=99b9121e2158603372c7313400283b622e6754d8;p=libs%2Fcore.git diff --git a/source/core/systemerror.h b/source/core/systemerror.h index d0a5634..cce3c5c 100644 --- a/source/core/systemerror.h +++ b/source/core/systemerror.h @@ -3,20 +3,20 @@ #include #include +#include "mspcore_api.h" namespace Msp { -class system_error: public std::runtime_error +class MSPCORE_API system_error: public std::runtime_error { private: - int code_; + int m_code; public: system_error(const std::string &, int = -1); system_error(const std::string &, const std::string &); - virtual ~system_error() throw() = default; - int code() const throw() { return code_; } + int code() const noexcept { return m_code; } private: static std::string get_message(int);