make httpexception public

This commit is contained in:
uwaa 2024-11-22 07:10:04 +00:00
parent 03ae4d8308
commit fb287a71fa

View file

@ -3,7 +3,7 @@
/// <summary>
/// An exception caused during HTTP reading and parsing.
/// </summary>
class HttpException : IOException
public class HttpException : IOException
{
public HttpException(string? message, Exception? innerException = null) : base(message, innerException)
{