XmlQueryCompileException.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // System.Xml.Query.XmlQueryCompileException
  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 XmlQueryCompileException : XmlQueryException
  14. {
  15. #region Constructors
  16. public XmlQueryCompileException (SerializationInfo info, StreamingContext context)
  17. : base (info, context)
  18. {
  19. }
  20. public XmlQueryCompileException ()
  21. : base ("An XML Query Compile Exception has occurred.")
  22. {
  23. }
  24. public XmlQueryCompileException (string res)
  25. : base (res)
  26. {
  27. }
  28. public XmlQueryCompileException (string resource, Exception exception)
  29. : base (resource, exception)
  30. {
  31. }
  32. #endregion // Constructors
  33. #region Properties
  34. [MonoTODO]
  35. public override string Message {
  36. get { throw new NotImplementedException(); }
  37. }
  38. #endregion // Properties
  39. #region Methods
  40. [MonoTODO]
  41. public override void GetObjectData (SerializationInfo info, StreamingContext context)
  42. {
  43. throw new NotImplementedException();
  44. }
  45. #endregion // Methods
  46. }
  47. }
  48. #endif // NET_1_2