| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // System.Xml.Query.XmlQueryException
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_2_0
- using System;
- using System.Runtime.Serialization;
- namespace System.Xml.Query
- {
- public class XmlQueryException : SystemException
- {
- #region Constructors
- protected XmlQueryException (SerializationInfo info, StreamingContext context)
- : base (info, context)
- {
- }
- public XmlQueryException ()
- : base ("An XML Query Exception has occurred.")
- {
- }
- public XmlQueryException (string res)
- : base (res)
- {
- }
- public XmlQueryException (string resource, Exception exception)
- : base (resource, exception)
- {
- }
- #endregion // Constructors
- #region Properties
- [MonoTODO]
- public int LineNumber {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public int LinePosition {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public override string Message {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public string SourceUri {
- get { throw new NotImplementedException(); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException();
- }
- #endregion // Methods
- }
- }
- #endif // NET_2_0
|