mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-18 00:35:51 +00:00
Chapter 7
This commit is contained in:
13
app/errors.py
Normal file
13
app/errors.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from flask import render_template
|
||||
from app import app, db
|
||||
|
||||
|
||||
@app.errorhandler(404)
|
||||
def not_found_error(error):
|
||||
return render_template("404.html"), 404
|
||||
|
||||
|
||||
@app.errorhandler(500)
|
||||
def internal_error(error):
|
||||
db.session.rollback()
|
||||
return render_template("500.html"), 500
|
Reference in New Issue
Block a user