Remove dynamic exceptions
[anna.git] / source / diameter.comm / ClientSessionReceiver.cpp
index d59d787..daa573b 100644 (file)
 using namespace anna::diameter::comm;
 
 void ClientSessionReceiver::apply(anna::comm::ClientSocket& clientSocket, const anna::comm::Message& message)
-throw(anna::RuntimeException) {
+noexcept(false) {
   LOGMETHOD(anna::TraceMethod tm("diameter.comm.ClientSessionReceiver", "apply", ANNA_FILE_LOCATION));
   a_session->receive(message);
 }
 
 void ClientSessionReceiver::eventBreakConnection(const anna::comm::ClientSocket& clientSocket)
-throw() {
+{
   LOGMETHOD(anna::TraceMethod tm("diameter.comm.ClientSessionReceiver", "eventBreakConnection", ANNA_FILE_LOCATION));
   a_session->finalize();
 }
 
 void ClientSessionReceiver::eventCreateConnection(const anna::comm::Server* server)
-throw() {
+{
   LOGMETHOD(anna::TraceMethod tm("diameter.comm.ClientSessionReceiver", "eventCreateConnection", ANNA_FILE_LOCATION));
   a_session->recover();
 }