Added ResponseStatusException
Build and Test Module / build-and-test (push) Successful in 5s Details

This commit is contained in:
Andrew Lalis 2025-03-23 12:43:09 -04:00
parent 0a4e507fa6
commit a5cfdf771c
1 changed files with 22 additions and 0 deletions

View File

@ -111,3 +111,25 @@ enum ContentTypes : string {
TEXT_HTML = "text/html",
TEXT_CSS = "text/css"
}
/**
* An exception that can be thrown while handling an HTTP request, to indicate
* that the server should return a specified response code, usually when you
* want to short-circuit due to an error.
*/
class HttpStatusException : Exception {
const StatusInfo status;
this(StatusInfo status, string message, Throwable next) {
super(message, next);
this.status = status;
}
this(StatusInfo status, string message) {
this(status, message, null);
}
this(StatusInfo status) {
this(status, "An error occurred while processing the request.", null);
}
}