]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/systemerror.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / core / systemerror.h
index c2387fad828b2de624ef502b58f6cd031a5c0666..cce3c5c7e6ad4f8662171d6adf735d841f574f72 100644 (file)
@@ -3,10 +3,11 @@
 
 #include <stdexcept>
 #include <string>
+#include "mspcore_api.h"
 
 namespace Msp {
 
-class system_error: public std::runtime_error
+class MSPCORE_API system_error: public std::runtime_error
 {
 private:
        int m_code;
@@ -14,9 +15,8 @@ private:
 public:
        system_error(const std::string &, int = -1);
        system_error(const std::string &, const std::string &);
-       ~system_error() throw() override = default;
 
-       int code() const throw() { return m_code; }
+       int code() const noexcept { return m_code; }
 
 private:
        static std::string get_message(int);