X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fdbos%2FCreator.hpp;h=09172111d7cb82f88d2a4e71138641eee065082e;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=2f806cd4df4b94548bfc5aeaa1420b0935a2e2f5;hpb=78be86969d2f26a9084b0c4af6ce43d5fa4ed3fd;p=anna.git 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; };