diff --git a/src/core/common/pokerthexception.cpp b/src/core/common/pokerthexception.cpp index c3c99dcc..872f1048 100644 --- a/src/core/common/pokerthexception.cpp +++ b/src/core/common/pokerthexception.cpp @@ -32,12 +32,12 @@ PokerTHException::PokerTHException(const char *sourcefile, int sourceline, int e m_msg = msgStream.str(); } -PokerTHException::~PokerTHException() +PokerTHException::~PokerTHException() throw() { } const char * -PokerTHException::what() const +PokerTHException::what() const throw() { return m_msg.c_str(); } diff --git a/src/engine/local_engine/localexception.cpp b/src/engine/local_engine/localexception.cpp index 1d04cee3..46e3b379 100644 --- a/src/engine/local_engine/localexception.cpp +++ b/src/engine/local_engine/localexception.cpp @@ -20,7 +20,7 @@ #include "localexception.h" -LocalException::~LocalException() +LocalException::~LocalException() throw() { } diff --git a/src/net/common/clientexception.cpp b/src/net/common/clientexception.cpp index 48293d0e..f1226f18 100644 --- a/src/net/common/clientexception.cpp +++ b/src/net/common/clientexception.cpp @@ -20,7 +20,7 @@ #include -ClientException::~ClientException() +ClientException::~ClientException() throw() { } diff --git a/src/net/common/netexception.cpp b/src/net/common/netexception.cpp index f5d93b3f..f70c295b 100644 --- a/src/net/common/netexception.cpp +++ b/src/net/common/netexception.cpp @@ -20,7 +20,7 @@ #include -NetException::~NetException() +NetException::~NetException() throw() { } diff --git a/src/net/common/serverexception.cpp b/src/net/common/serverexception.cpp index b707d611..cae5bc08 100644 --- a/src/net/common/serverexception.cpp +++ b/src/net/common/serverexception.cpp @@ -20,7 +20,7 @@ #include -ServerException::~ServerException() +ServerException::~ServerException() throw() { }