Uwaa/HTTP/HttpException.cs
2024-11-22 07:10:04 +00:00

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)
{
}
}