15 lines
342 B
C#
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;
|
|
}
|
|
}
|