Remove dynamic exceptions
[anna.git] / source / diameter.comm / ServerSessionReceiver.cpp
index a4fac54..58cb833 100644 (file)
 using namespace anna::diameter::comm;
 
 void ServerSessionReceiver::apply(anna::comm::ClientSocket& clientSocket, const anna::comm::Message& message)
-throw(anna::RuntimeException) {
+noexcept(false) {
   LOGMETHOD(anna::TraceMethod tm("diameter::comm::ServerSessionReceiver", "apply", ANNA_FILE_LOCATION));
   a_session->receive(message);
 }
 
 void ServerSessionReceiver::eventBreakLocalConnection(const anna::comm::ClientSocket& clientSocket)
-throw() {
+{
   LOGMETHOD(anna::TraceMethod tm("diameter::comm::ServerSessionReceiver", "eventBreakLocalConnection", ANNA_FILE_LOCATION));
   //if (!a_session) return; // caso de los Engine::closeServerSession
   a_session->finalize();