Remove dynamic exceptions
[anna.git] / source / diameter / helpers / tme / codectypes / ISDNNumber.cpp
index cd4efe4..a138899 100644 (file)
@@ -13,7 +13,7 @@
 //------------------------------------------------------------------------------
 //---------------------------------------------------- ISDNNumber::updateBasic()
 //------------------------------------------------------------------------------
-void anna::diameter::helpers::tme::codectypes::ISDNNumber::updateBasic() throw(anna::RuntimeException) {
+void anna::diameter::helpers::tme::codectypes::ISDNNumber::updateBasic() noexcept(false) {
   std::string result;
   anna::functions::codeIsupNumber(a_isupNumber, false /* calling party number */, result);
   OctetString::setValue(result);
@@ -23,7 +23,7 @@ void anna::diameter::helpers::tme::codectypes::ISDNNumber::updateBasic() throw(a
 //------------------------------------------------------------------------------
 //--------------------------------------------------------- ISDNNumber::decode()
 //------------------------------------------------------------------------------
-void anna::diameter::helpers::tme::codectypes::ISDNNumber::decode(const char* buffer, const int size) throw(anna::RuntimeException) {
+void anna::diameter::helpers::tme::codectypes::ISDNNumber::decode(const char* buffer, const int size) noexcept(false) {
   if(!buffer)
     throw anna::RuntimeException("ISDNNumber::decode | Null Buffer provided", ANNA_FILE_LOCATION);