24 lines
632 B
C#
24 lines
632 B
C#
|
// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
|
||
|
using System;
|
||
|
|
||
|
namespace HtmlAgilityPack
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Represents an exception thrown by the HtmlWeb utility class.
|
||
|
/// </summary>
|
||
|
public class HtmlWebException : Exception
|
||
|
{
|
||
|
#region Constructors
|
||
|
|
||
|
/// <summary>
|
||
|
/// Creates an instance of the HtmlWebException.
|
||
|
/// </summary>
|
||
|
/// <param name="message">The exception's message.</param>
|
||
|
public HtmlWebException(string message)
|
||
|
: base(message)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|