CSharpHttpServer/SimpleHttpServer/HttpHandlingException.cs
2024-01-09 04:28:45 +01:00

9 lines
224 B
C#

namespace SimpleHttpServer;
internal class HttpHandlingException : Exception {
public readonly int status;
public HttpHandlingException(int status, string msg) : base(msg) {
this.status = status;
}
}