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