9 lines
224 B
C#
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;
|
|
}
|
|
}
|