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 a9ebbab..2adf84e 100644
--- a/src/HttpResponse.cpp
+++ b/src/HttpResponse.cpp
@@ -9,6 +9,8 @@ static std::string status_code_string(HttpStatusCode status_code)
return "200 OK";
case HttpStatusCode::Forbidden:
return "403 Forbidden";
+ case HttpStatusCode::NotFound:
+ return "404 Not Found";
}
}