Uwaa/HTTP/HttpException.cs

12 lines
276 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>
2024-11-22 08:10:04 +01:00
public class HttpException : IOException
2024-11-22 07:40:43 +01:00
{
public HttpException(string? message, Exception? innerException = null) : base(message, innerException)
{
}
}