seitime-frappe/frappe/website/page_controllers/error_page.py
2021-05-11 17:03:00 +05:30

7 lines
339 B
Python

from frappe.website.page_controllers.template_page import TemplatePage
class ErrorPage(TemplatePage):
def __init__(self, path, http_status_code, exception):
path = 'error'
super().__init__(path=path, http_status_code=http_status_code)
self.http_status_code = getattr(exception, 'http_status_code', None) or http_status_code or 500