From be22544ed60f9a463a5ad235c7ff94ebfffbb0e8 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sun, 5 Jun 2011 17:12:34 +0200 Subject: [PATCH] Declare RootException::Msg() throw(). --- base/exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/exception.hpp b/base/exception.hpp index 43a4669138..ff6bb102c4 100644 --- a/base/exception.hpp +++ b/base/exception.hpp @@ -33,7 +33,7 @@ public: return msg.c_str(); } - string const & Msg() const + string const & Msg() const throw() { return m_Msg; }