Remove dynamic exceptions
[anna.git] / include / anna / core / util / Component.hpp
index 6188f1c..6ac2e42 100644 (file)
@@ -47,21 +47,21 @@ public:
      Gets the class name configured at constructor.
      \return The class name configured at constructor.
   */
-  const char* getClassName() const throw() { return a_className.c_str(); }
+  const char* getClassName() const { return a_className.c_str(); }
 
   /**
   * Class string representation
   *
   * @return String with class content
   */
-  virtual std::string asString(void) const throw();
+  virtual std::string asString(void) const ;
 
   /**
      Class XML representation.
      \param parent XML node over which we will put instance information.
      \return XML documentcon with class content.
   */
-  virtual anna::xml::Node* asXML(anna::xml::Node* parent) const throw();
+  virtual anna::xml::Node* asXML(anna::xml::Node* parent) const ;
 
 
 protected: