X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fdbos%2FCreator.hpp;fp=include%2Fanna%2Fdbos%2FCreator.hpp;h=09172111d7cb82f88d2a4e71138641eee065082e;hp=2f806cd4df4b94548bfc5aeaa1420b0935a2e2f5;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/dbos/Creator.hpp b/include/anna/dbos/Creator.hpp index 2f806cd..0917211 100644 --- a/include/anna/dbos/Creator.hpp +++ b/include/anna/dbos/Creator.hpp @@ -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::Creator"; } + virtual const char* getClassName() const { return "anna::dbos::Creator"; } protected: /** @@ -48,10 +48,10 @@ protected: Devuelve el indice usado para ubicar en memoria el objeto que vamos a cargar. @return El indice usado para ubicar en memoria el objeto que vamos a cargar. */ - virtual Index getIndex() const throw(RuntimeException) = 0; + virtual Index getIndex() const noexcept(false) = 0; private: - dbms::Statement* initialize(dbms::Database&) throw(RuntimeException) { return NULL;} + dbms::Statement* initialize(dbms::Database&) noexcept(false) { return NULL;} friend class StorageArea; };