XmlQueryException.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // System.Xml.Query.XmlQueryException
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_2_0
  10. using System;
  11. using System.Runtime.Serialization;
  12. namespace System.Xml.Query
  13. {
  14. public class XmlQueryException : SystemException
  15. {
  16. #region Constructors
  17. protected XmlQueryException (SerializationInfo info, StreamingContext context)
  18. : base (info, context)
  19. {
  20. }
  21. public XmlQueryException ()
  22. : base ("An XML Query Exception has occurred.")
  23. {
  24. }
  25. public XmlQueryException (string res)
  26. : base (res)
  27. {
  28. }
  29. public XmlQueryException (string resource, Exception exception)
  30. : base (resource, exception)
  31. {
  32. }
  33. #endregion // Constructors
  34. #region Properties
  35. [MonoTODO]
  36. public int LineNumber {
  37. get { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public int LinePosition {
  41. get { throw new NotImplementedException (); }
  42. }
  43. [MonoTODO]
  44. public override string Message {
  45. get { throw new NotImplementedException(); }
  46. }
  47. [MonoTODO]
  48. public string SourceUri {
  49. get { throw new NotImplementedException(); }
  50. }
  51. #endregion // Properties
  52. #region Methods
  53. [MonoTODO]
  54. public override void GetObjectData (SerializationInfo info, StreamingContext context)
  55. {
  56. throw new NotImplementedException();
  57. }
  58. #endregion // Methods
  59. }
  60. }
  61. #endif // NET_2_0