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