summaryrefslogtreecommitdiff
path: root/src/HttpResponse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/HttpResponse.cpp')
-rw-r--r--src/HttpResponse.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/HttpResponse.cpp b/src/HttpResponse.cpp
index 2adf84e..2d69583 100644
--- a/src/HttpResponse.cpp
+++ b/src/HttpResponse.cpp
@@ -11,6 +11,8 @@ static std::string status_code_string(HttpStatusCode status_code)
return "403 Forbidden";
case HttpStatusCode::NotFound:
return "404 Not Found";
+ case HttpStatusCode::InternalServerError:
+ return "500 Internal Server Error";
}
}