Remove dynamic exceptions
[anna.git] / include / anna / dbms.mysql / InputBind.hpp
index 8f58e1e..f3f250b 100644 (file)
@@ -32,19 +32,19 @@ public:
   virtual ~InputBind();
 
 private:
-  void code() const throw(RuntimeException);
+  void code() const noexcept(false);
 
-  void codeShortBlock(dbms::Data&) throw();
-  void codeDate(dbms::Data&) throw();
+  void codeShortBlock(dbms::Data&) ;
+  void codeDate(dbms::Data&) ;
 
   static char asCharacter(const char byte)
-  throw() {
+  {
     return (byte >= 0 && byte <= 9) ? (byte + '0') : ((byte - 0xa) + 'A');
   }
 
   /* Funciones virtuales puras */
-  void prepare(anna::dbms::Statement*, anna::dbms::Connection*, const int pos) throw(RuntimeException);
-  void release(anna::dbms::Statement*) throw() {;}
+  void prepare(anna::dbms::Statement*, anna::dbms::Connection*, const int pos) noexcept(false);
+  void release(anna::dbms::Statement*) {;}
 
   friend class mysql::Statement;
 };