XmlQueryException.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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_1_2
  10. using System;
  11. using System.Runtime.Serialization;
  12. namespace System.Xml.Query {
  13. public class XmlQueryException : SystemException
  14. {
  15. #region Constructors
  16. public XmlQueryException (SerializationInfo info, StreamingContext context)
  17. : base (info, context)
  18. {
  19. }
  20. public XmlQueryException ()
  21. : base ("An XML Query Exception has occurred.")
  22. {
  23. }
  24. public XmlQueryException (string res)
  25. : base (res)
  26. {
  27. }
  28. public XmlQueryException (string resource, Exception exception)
  29. : base (resource, exception)
  30. {
  31. }
  32. #endregion // Constructors
  33. #region Properties
  34. [MonoTODO]
  35. public int LineNumber {
  36. get { throw new NotImplementedException (); }
  37. }
  38. [MonoTODO]
  39. public int LinePosition {
  40. get { throw new NotImplementedException (); }
  41. }
  42. [MonoTODO]
  43. public override string Message {
  44. get { throw new NotImplementedException(); }
  45. }
  46. [MonoTODO]
  47. public string SourceUri {
  48. get { throw new NotImplementedException(); }
  49. }
  50. #endregion // Properties
  51. #region Methods
  52. [MonoTODO]
  53. public override void GetObjectData (SerializationInfo info, StreamingContext context)
  54. {
  55. throw new NotImplementedException();
  56. }
  57. [MonoTODO]
  58. public void SetMessage (string message, bool addLineInfo)
  59. {
  60. throw new NotImplementedException ();
  61. }
  62. #endregion // Methods
  63. }
  64. }
  65. #endif // NET_1_2