Uwaa/HTTP/HttpException.cs

12 lines
269 B
C#
Raw Normal View History

2024-11-22 07:40:43 +01:00
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)
{
}
}