diff options
author | Adrian Kummerländer | 2014-04-28 20:03:06 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-04-28 20:03:06 +0200 |
commit | 22cbef9c75aeb58d6c88c9b736526cb9d52a52a2 (patch) | |
tree | bc0ac83d1ec0186b43aef7d574dba044e9ff7e9c /src/support/dom | |
parent | 947a8389728ff7d052fa820f598da3c17802f3d1 (diff) | |
download | InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.tar InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.tar.gz InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.tar.bz2 InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.tar.lz InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.tar.xz InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.tar.zst InputXSLT-22cbef9c75aeb58d6c88c9b736526cb9d52a52a2.zip |
Adapted read-directory tree construction to match the other functions
* throwing std::out_of_range exception from DomDocumentCache::get instead of returning nullptr in case of a problem
* moved xalanToString method back into FilesystemContext compilation unit as is only needed there
Diffstat (limited to 'src/support/dom')
-rw-r--r-- | src/support/dom/document_cache.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/support/dom/document_cache.cc b/src/support/dom/document_cache.cc index f814559..1573af8 100644 --- a/src/support/dom/document_cache.cc +++ b/src/support/dom/document_cache.cc @@ -1,5 +1,7 @@ #include "document_cache.h" +#include <stdexcept> + namespace InputXSLT { DomDocumentCache::DomDocumentCache(): @@ -16,7 +18,7 @@ DomDocumentCache::item* DomDocumentCache::get(const std::string& key) { if ( result.second ) { return (*(result.first)).second.get(); } else { - return nullptr; + throw std::out_of_range("failed to instantiate DomDocumentCache"); } } else { return (*itemIter).second.get(); |