Remove dynamic exceptions
[anna.git] / source / xml / Data.cpp
index 4af223f..2a6cd5f 100644 (file)
@@ -15,12 +15,12 @@ using namespace std;
 using namespace anna;
 
 void xml::Data::setValue(const int value)
-throw() {
+{
   a_value = anna::functions::asString(value);
 }
 
 string xml::Data::asString() const
-throw() {
+{
   string result("xml::Data { Node: ");
   result += a_owner->getName();
   result += " | Value: ";