aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/abort.py
blob: d9e3282ff78be7be952c7f5a820c6c9478028846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# coding=utf-8
from werkzeug.exceptions import InternalServerError

from pysite.base_route import RouteView


class EasterEgg500(RouteView):
    path = "/500"
    name = "500"

    def get(self):
        raise InternalServerError