每当我的代码抛出异常时,客户端都会收到错误500内部服务器错误。
errors = {
'UserNotFoundException': {
'message': 'User does not exist.',
'status': 404,
}
}
bp = Blueprint('users', __name__)
api = Api(bp, errors=errors)
我不能在不导致错误500的情况下从我的路线中抛出UserNotFoundException
。我在errors
中定义的内容似乎被忽略了。