XPathException.cs 922 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // System.Xml.XPath.XPathException
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // (C) Copyright 2002 Tim Coleman
  8. //
  9. using System.Runtime.Serialization;
  10. namespace System.Xml.XPath
  11. {
  12. [Serializable]
  13. public class XPathException : SystemException
  14. {
  15. #region Fields
  16. string message;
  17. #endregion
  18. #region Constructors
  19. [MonoTODO]
  20. protected XPathException (SerializationInfo info, StreamingContext context)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public XPathException (string message, Exception innerException)
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. #endregion
  30. #region Properties
  31. public override string Message {
  32. get { return message; }
  33. }
  34. #endregion
  35. #region Methods
  36. [MonoTODO]
  37. public override void GetObjectData (SerializationInfo info, StreamingContext context)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. #endregion
  42. }
  43. }