11 lines
276 B
C#
11 lines
276 B
C#
namespace Uwaa.HTTP;
|
|
|
|
/// <summary>
|
|
/// An exception caused during HTTP reading and parsing.
|
|
/// </summary>
|
|
public class HttpException : IOException
|
|
{
|
|
public HttpException(string? message, Exception? innerException = null) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|