aboutsummaryrefslogtreecommitdiff
path: root/src/function/base.h
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-06-08 16:49:41 +0200
committerAdrian Kummerländer2014-06-08 16:49:41 +0200
commitf13e1fa9a41006d80e6923489414cfdc2fcadd08 (patch)
treecc17dacae4402ad655fda62f686585737623ee7f /src/function/base.h
parent49e2010b489ab6d5516a9abd896c67738e0dc1cc (diff)
downloadInputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.tar
InputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.tar.gz
InputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.tar.bz2
InputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.tar.lz
InputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.tar.xz
InputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.tar.zst
InputXSLT-f13e1fa9a41006d80e6923489414cfdc2fcadd08.zip
Handling xercesc::DOMException in "read-xml-file" and "external-text-formatter"
* external DOM may cause xercesc::DOMException's to be thrown instead of passing all errors to the custom error handlers ** these exceptions are handled by this commit by setting the "result" attribute to "error" and adding "error" value nodes with further information
Diffstat (limited to 'src/function/base.h')
-rw-r--r--src/function/base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/function/base.h b/src/function/base.h
index 56712bb..3ca1d61 100644
--- a/src/function/base.h
+++ b/src/function/base.h
@@ -82,7 +82,7 @@ class FunctionBase : public xalan::Function {
const xalan::XalanDOMString& getError(
xalan::XalanDOMString& result) const {
result.assign(std::string(
- "The function expects " +
+ "The function expects " +
std::to_string(parameter_count) +
" parameter(s)"
).data());