Added noexcept to CustomStdException destructor

This commit is contained in:
Phil Nash 2015-11-20 17:09:48 +00:00
parent bd8688cded
commit 28aece6a7a
1 changed files with 1 additions and 0 deletions

View File

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