// HtmlAgilityPack V1.0 - Simon Mourier using System; namespace HtmlAgilityPack { /// /// Represents an exception thrown by the HtmlWeb utility class. /// public class HtmlWebException : Exception { #region Constructors /// /// Creates an instance of the HtmlWebException. /// /// The exception's message. public HtmlWebException(string message) : base(message) { } #endregion } }