Using noexcept instead of throw in RootException.

This commit is contained in:
VladiMihaylenko 2018-02-28 11:49:13 +03:00 committed by Roman Kuznetsov
parent 7d0eb88c07
commit 8a7e2ee86a

View file

@ -11,9 +11,7 @@ class RootException : public std::exception
public:
RootException(char const * what, std::string const & msg);
virtual ~RootException() throw()
{
}
virtual ~RootException() noexcept = default;
std::string const & Msg() const { return m_msg; }