aboutsummaryrefslogtreecommitdiffstats
path: root/error_handlers/http_404.py
diff options
context:
space:
mode:
Diffstat (limited to 'error_handlers/http_404.py')
-rw-r--r--error_handlers/http_404.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/error_handlers/http_404.py b/error_handlers/http_404.py
deleted file mode 100644
index 5920806f..00000000
--- a/error_handlers/http_404.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# coding=utf-8
-
-# External Libraries
-from werkzeug.wrappers import Response
-
-
-class Index:
- error_code = 404
-
- def err(self):
- return Response("Page not found!", 404)