--- parser3/src/include/pa_xml_exception.h 2012/03/16 09:24:11 1.8 +++ parser3/src/include/pa_xml_exception.h 2013/10/15 22:28:36 1.9 @@ -10,7 +10,7 @@ #ifdef XML -#define IDENT_PA_XML_EXCEPTION_H "$Id: pa_xml_exception.h,v 1.8 2012/03/16 09:24:11 moko Exp $" +#define IDENT_PA_XML_EXCEPTION_H "$Id: pa_xml_exception.h,v 1.9 2013/10/15 22:28:36 moko Exp $" const char* const XML_VALUE_MUST_BE_STRING = "value must be string"; const char* const XML_DATA_MUST_BE_STRING = "data must be string"; @@ -27,6 +27,7 @@ const char* const XML_INVALID_LOCAL_NAME // includes #include "pa_exception.h" +#include "pa_request.h" // defines @@ -34,6 +35,8 @@ class XmlException: public Exception { public: XmlException(const String* aproblem_source, const char* aproblem_comment=0, ...); + XmlException(const String* aproblem_source, Request& r); + XmlException(); }; #endif