This article for flask 1.0.x mentions we must use app_errorhandler (example:@bp.app_errorhandler)
This and this SO answers also mention that we must use app_errorhandler (example:@bp.app_errorhandler)
This article for flask 1.0.x mentions we must use errorhandler (example: @bp.errorhandler)
Why does documentation for 1.0.x mention 2 different things and which is the correct approach to register blueprint level error handler in Flask 1.0.2?