Remove dynamic exceptions
[anna.git] / source / xml / Document.cpp
index ebeefa7..27695f6 100644 (file)
@@ -41,7 +41,7 @@ Document::~Document() {
 }
 
 void Document::initialize(const char* content)
-throw(RuntimeException) {
+noexcept(false) {
   LOGMETHOD(TraceMethod tf("anna::xml::Document", "initialize (char*)", ANNA_FILE_LOCATION));
   clear();
   a_handle = do_initialize(content);
@@ -50,7 +50,7 @@ throw(RuntimeException) {
 }
 
 void Document::initialize(const DataBlock& content)
-throw(RuntimeException) {
+noexcept(false) {
   LOGMETHOD(TraceMethod tf("anna::xml::Document", "initialize (DataBlock)", ANNA_FILE_LOCATION));
   clear();
   a_handle = do_initialize(content);
@@ -59,7 +59,7 @@ throw(RuntimeException) {
 }
 
 const xml::Node* Document::parse()
-throw(RuntimeException) {
+noexcept(false) {
   if(a_parser == NULL)
     a_parser = new Parser;
 
@@ -67,7 +67,7 @@ throw(RuntimeException) {
 }
 
 const xml::Node* Document::parse(const xml::DTD& dtd)
-throw(RuntimeException) {
+noexcept(false) {
   if(a_parser == NULL)
     a_parser = new Parser;
 
@@ -75,7 +75,7 @@ throw(RuntimeException) {
 }
 
 void Document::clear()
-throw() {
+{
   if(a_handle != NULL) {
     xmlFreeDoc(a_handle);
     a_handle = NULL;
@@ -92,17 +92,17 @@ throw() {
 }
 
 const char* Document::getEncoding() const
-throw() {
+{
   return (a_encoding == NULL) ? NULL : ((a_encoding->empty() == true) ? NULL : a_encoding->c_str());
 }
 
 const char* Document::getVersion() const
-throw() {
+{
   return (a_version == NULL) ? NULL : ((a_version->empty() == true) ? NULL : a_version->c_str());
 }
 
 const char* Document::getContentAsCString() const
-throw(RuntimeException) {
+noexcept(false) {
   const char* result = NULL;
 
   if(a_contentIsCString == false) {
@@ -121,7 +121,7 @@ throw(RuntimeException) {
 }
 
 void Document::setEncoding(const char* encoding)
-throw() {
+{
   if(a_encoding == NULL) {
     if(encoding != NULL)
       a_encoding = new string(encoding);
@@ -134,7 +134,7 @@ throw() {
 }
 
 void Document::setVersion(const char* version)
-throw() {
+{
   if(a_version == NULL) {
     if(version != NULL)
       a_version = new string(version);