CSharpHttpServer/SimpleHttpServer/HttpHandlingException.cs
2023-11-30 17:31:19 +01:00

15 lines
342 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SimpleHttpServer;
internal class HttpHandlingException : Exception {
public readonly int status;
public HttpHandlingException(int status, string msg) : base(msg) {
this.status = status;
}
}