From fb287a71faafed8ef3765a087be7591c39b22172 Mon Sep 17 00:00:00 2001 From: uwaa Date: Fri, 22 Nov 2024 07:10:04 +0000 Subject: [PATCH] make httpexception public --- HTTP/HttpException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTP/HttpException.cs b/HTTP/HttpException.cs index 42472a6..1026ae5 100644 --- a/HTTP/HttpException.cs +++ b/HTTP/HttpException.cs @@ -3,7 +3,7 @@ /// /// An exception caused during HTTP reading and parsing. /// -class HttpException : IOException +public class HttpException : IOException { public HttpException(string? message, Exception? innerException = null) : base(message, innerException) {