lowecase
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-02-13 20:39:14 +01:00
parent d64c8859af
commit c20b5f7c98
16 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
def get_standard_error_handler(code: int):
def error_handler(err):
return {"msg": str(err)}, code
return error_handler
# function to register all handlers
def register_all_error_handlers(app):
error_codes_to_override = [404, 403, 401, 405, 400, 409, 422, 500]
for code in error_codes_to_override:
app.register_error_handler(code, get_standard_error_handler(code))