Remove dynamic exceptions
[anna.git] / source / diameter / app / dcca / Message.cpp
index 5441214..1539731 100644 (file)
 using namespace anna::diameter::app::dcca;
 
 
-const qosProfile_t & Message::decode3GPPGPRSNegQoSProfile() throw(anna::RuntimeException) {
-  const std::string & utf8 = get3GPPGPRSNegQoSProfile()->getValue();
+const qosProfile_t & Message::decode3GPPGPRSNegQoSProfile() noexcept(false) {
   a_qosProfile.reset();
+  //const std::string & utf8 = get3GPPGPRSNegQoSProfile()->getValue();
+  // TODO: decode here ...
   return a_qosProfile;
 }