Exemplo n.º 1
0
def base_exceptions_handler(error):
    return format_exception(str(*error.args), 500)
Exemplo n.º 2
0
def file_not_found_handler(error):
    return format_exception(str(*error.args), 404)
Exemplo n.º 3
0
def regex_error(error):
    return format_exception(str(*error.args), 500)
Exemplo n.º 4
0
def custom_exceptions_error_handler(error):
    if isinstance(error, CustomException):
        return format_exception(error.description, error.code)
Exemplo n.º 5
0
def bad_request_key_error(error):
    return format_exception(error.description, 500)
Exemplo n.º 6
0
def method_not_allowed_handler(error):
    return format_exception("Method is not allowed.", 405)
Exemplo n.º 7
0
def jinja_undefined_error(error):
    return format_exception(
        "Template values do not match data_json:" + str(*error.args), 500)
Exemplo n.º 8
0
def docx_package_not_found_error(error):
    return format_exception("Template file is invalid.", 500)
Exemplo n.º 9
0
def json_decode_error_handler(error):
    return format_exception("json_data is not in valid JSON format ", 500)