| 123456789101112131415161718192021222324252627 |
- //
- // System.Xml.XPath.XPathException
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // (C) Copyright 2002 Tim Coleman
- //
- using System.Runtime.Serialization;
- namespace System.Xml.XPath
- {
- [Serializable]
- public class XPathException : SystemException
- {
- #region Constructors
- protected XPathException (SerializationInfo info, StreamingContext context) : base (info, context) {}
- public XPathException (string message, Exception innerException) : base (message, innerException) {}
- internal XPathException (string message) : base (message, null) {}
- #endregion
- }
- }
|