aboutsummaryrefslogtreecommitdiffstats
path: root/error_handlers/http_404.py
blob: 5920806fd77a4e32a356af1e79ce62620988c992 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# coding=utf-8

# External Libraries
from werkzeug.wrappers import Response


class Index:
    error_code = 404

    def err(self):
        return Response("Page not found!", 404)