Added noexcept to CustomStdException destructor

This commit is contained in:
Phil Nash 2015-11-20 17:09:48 +00:00
parent 7e15d9b20b
commit d274fc571c

View File

@ -112,6 +112,7 @@ public:
CustomStdException( const std::string& msg )
: m_msg( msg )
{}
~CustomStdException() CATCH_NOEXCEPT {}
std::string getMessage() const
{