Should be able to just pass an `Error` object and automatically fetch the error message from the `Error` object. For example: ``` javascript return next(new errors.BadRequestError(error)); ``` Instead of _(currently)_: ``` javascript return next(new errors.BadRequestError(error.message)); ```