dbertoni 01/03/29 14:17:05
Modified: c/src/XPath XPathException.cpp XPathException.hpp
Log:
Pass text string to base class.
Revision Changes Path
1.3 +3 -2 xml-xalan/c/src/XPath/XPathException.cpp
Index: XPathException.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathException.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- XPathException.cpp 2000/04/11 14:46:17 1.2
+++ XPathException.cpp 2001/03/29 22:17:05 1.3
@@ -61,8 +61,9 @@
XPathException::XPathException(
const XalanDOMString& message,
- const XalanNode* styleNode) :
- XSLException(message),
+ const XalanNode* styleNode,
+ const XalanDOMString& theType) :
+ XSLException(message, theType),
m_styleNode(styleNode)
{
}
1.5 +2 -1 xml-xalan/c/src/XPath/XPathException.hpp
Index: XPathException.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathException.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XPathException.hpp 2000/11/06 19:33:44 1.4
+++ XPathException.hpp 2001/03/29 22:17:05 1.5
@@ -91,7 +91,8 @@
explicit
XPathException(
const XalanDOMString& message = XalanDOMString(),
- const XalanNode* styleNode = 0);
+ const XalanNode* styleNode = 0,
+ const XalanDOMString& theType =
XalanDOMString(XALAN_STATIC_UCODE_STRING("XPathException")));
virtual
~XPathException();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]