namespace System { namespace Xml { namespace XPath { /// /// Provides the exception thrown when an error occurs while processing an XPath expression. /// class XPathException : SystemException { public: XPathException(); XPathException(const char *message); XPathException(const char *message, Exception &innerException); }; } } }