namespace Uwaa.HTTP; /// /// An exception caused during HTTP reading and parsing. /// public class HttpException : IOException { public HttpException(string? message, Exception? innerException = null) : base(message, innerException) { } }