Remove dynamic exceptions
[anna.git] / include / anna / dbms / functions.hpp
index e782d34..685b429 100644 (file)
@@ -73,7 +73,7 @@ public:
    * \code
    * //static
    * void axe::storage::functions::verifyDataScheme (dbms::Connection& connection)
-   *    throw (RuntimeException)
+   *    noexcept(false)
    * {
    *    anna::dbms::functions::verifyDataScheme (connection, "axe_dataScheme", "v1.3");
    * }
@@ -87,7 +87,7 @@ public:
    * \param columnDate Nombre de la columna que contiene la fecha de instalaciĆ³n de cada parche.
    */
   static void verifyDataScheme(dbms::Connection& connection, const char* tableName, const char* requiredPatch, const char* columnID = "id", const char* columnDate = "installation_date")
-  throw(RuntimeException);
+  noexcept(false);
 };
 
 }