Remove dynamic exceptions
[anna.git] / include / anna / dbos / Recorder.hpp
index 696e665..ad37f2f 100644 (file)
@@ -27,7 +27,7 @@ public:
      a la que pertenece la clase.
      \return Una cadena con el nombre de este selector.
   */
-  virtual const char* getClassName() const throw() { return "anna::dbos::Recorder"; }
+  virtual const char* getClassName() const { return "anna::dbos::Recorder"; }
 
 protected:
   /**
@@ -39,7 +39,7 @@ protected:
   Recorder(dbms::Database& database, const Id id = 0) : Accesor(database, id) {;}
 
 private:
-  Index getIndex() const throw() { return 0; }   // No se usa
+  Index getIndex() const { return 0; }   // No se usa
 };
 
 }