XPathException.cs 584 B

123456789101112131415161718192021222324252627
  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 Constructors
  16. protected XPathException (SerializationInfo info, StreamingContext context) : base (info, context) {}
  17. public XPathException (string message, Exception innerException) : base (message, innerException) {}
  18. internal XPathException (string message) : base (message, null) {}
  19. #endregion
  20. }
  21. }