a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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
|
|
}
|
|
} |