Delete an unused define.
[mono-project/dkf.git] / docs / HtmlAgilityPack / HtmlWebException.cs
blob6896257facc36d1067cbe3006a087a9454776f06
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
2 using System;
4 namespace HtmlAgilityPack
6 /// <summary>
7 /// Represents an exception thrown by the HtmlWeb utility class.
8 /// </summary>
9 public class HtmlWebException : Exception
11 #region Constructors
13 /// <summary>
14 /// Creates an instance of the HtmlWebException.
15 /// </summary>
16 /// <param name="message">The exception's message.</param>
17 public HtmlWebException(string message)
18 : base(message)
22 #endregion