Remove dynamic exceptions
[anna.git] / source / diameter.comm / ClassCode.cpp
index 40d2c37..6f75663 100644 (file)
 using namespace std;
 
 //string anna::diameter::comm::ClassCode::asString(const ClassCode::_v v)
-//throw() {
+//{
 //   static const char* text [] = { "Undefined", "Bind", "ApplicationMessage" };
 //   string result("ClassCode: ");
 //   return result += (v >= Min && v < Max) ? text [v] : "[null]";
 //}
 
 string anna::diameter::comm::ClassCode::asText(const ClassCode::_v v)
-throw() {
+{
   static const char* text [] = { "Undefined", "Bind", "ApplicationMessage" };
   return string((v >= Min && v < Max) ? text [v] : "[null]");
 }