nopaque/app/errors/__init__.py

7 lines
152 B
Python
Raw Normal View History

2023-03-10 15:17:24 +01:00
from werkzeug.exceptions import HTTPException
from .handlers import generic
2020-10-12 13:26:35 +02:00
2023-03-10 15:17:24 +01:00
def init_app(app):
app.register_error_handler(HTTPException, generic)