artf4107: Replaced throw() with noexcept

Change-Id: I05bb06f6485120da05ce22c464b41f3cb0a0e00e
This commit is contained in:
Tyler Veness
2015-06-25 00:51:38 -07:00
parent faedfa6ed4
commit e4a8aacc51
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ class BadMessageException : public std::exception
{
public:
BadMessageException(const char* message);
~BadMessageException() throw ();
~BadMessageException() noexcept;
const char* what() const noexcept;
private:
std::string message;