Remove dynamic exceptions
[anna.git] / source / diameter / codec / basetypes / Float64.cpp
index 0693e35..2baf209 100644 (file)
@@ -13,7 +13,7 @@
 //------------------------------------------------------------------------------
 //--------------------------------------------------------- Float64::codeBasic()
 //------------------------------------------------------------------------------
-void anna::diameter::codec::basetypes::Float64::codeBasic(char* buffer, int &size) throw(anna::RuntimeException) {
+void anna::diameter::codec::basetypes::Float64::codeBasic(char* buffer, int &size) noexcept(false) {
   /*buffer=*/
   anna::comm::functions::codeDouble(buffer, a_value);
   size = getSize();
@@ -23,7 +23,7 @@ void anna::diameter::codec::basetypes::Float64::codeBasic(char* buffer, int &siz
 //------------------------------------------------------------------------------
 //------------------------------------------------ Float64::setPrintableString()
 //------------------------------------------------------------------------------
-void anna::diameter::codec::basetypes::Float64::setPrintableString(const char * printableString) throw(anna::RuntimeException) {
+void anna::diameter::codec::basetypes::Float64::setPrintableString(const char * printableString) noexcept(false) {
   setValue(atof/*strtod*/(printableString));
 }
 
@@ -31,7 +31,7 @@ void anna::diameter::codec::basetypes::Float64::setPrintableString(const char *
 //------------------------------------------------------------------------------
 //------------------------------------------------------------ Float64::decode()
 //------------------------------------------------------------------------------
-void anna::diameter::codec::basetypes::Float64::decode(const char* buffer, const int size) throw(anna::RuntimeException) {
+void anna::diameter::codec::basetypes::Float64::decode(const char* buffer, const int size) noexcept(false) {
   if(!buffer)
     throw anna::RuntimeException("Float64::decode | Null Buffer provided", ANNA_FILE_LOCATION);