| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // 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 Fields
-
- string message;
- #endregion
-
- #region Constructors
- [MonoTODO]
- protected XPathException (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XPathException (string message, Exception innerException)
- {
- throw new NotImplementedException ();
- }
- #endregion
- #region Properties
-
- public override string Message {
- get { return message; }
- }
- #endregion
- #region Methods
- [MonoTODO]
- public override void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
-
- #endregion
- }
- }
|