Remove dynamic exceptions
[anna.git] / include / anna / diameter / codec / basetypes / DiameterURI.hpp
index d13f86a..40ec960 100644 (file)
@@ -32,7 +32,7 @@ class DiameterURI : public OctetString {
 // De momento no vamos a interpretar/decodificar este tipo de formato, puesto que aún no se ha necesitado a nivel de aplicación
 
   // Only for derived diameter type:
-  void updateBasic() throw(anna::RuntimeException); // assertPrintable
+  void updateBasic() noexcept(false); // assertPrintable
 
 public:
 
@@ -40,7 +40,7 @@ public:
 
   // gets
 
-  std::string getFormatName() const throw() { return "DiameterURI"; }
+  std::string getFormatName() const { return "DiameterURI"; }
 
 
   // helpers
@@ -48,7 +48,7 @@ public:
 
   // sets
 
-  void decode(const char* buffer, const int size) throw(anna::RuntimeException);
+  void decode(const char* buffer, const int size) noexcept(false);
 };
 
 }