Merge pull request #681 from PlasmaPower/update-error-handling-doc

Update error handling doc to use promises+async (v2.x)
master
Yiyu He 2016-03-14 23:16:01 +08:00
commit 9ba2f9c5df
1 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@
this example prepends all error messages with "Error: "
```js
app.use(function*(next){
app.use(async (ctx, next) => {
try {
yield next;
await next();
} catch (error) {
error.message = 'Error: ' + error.message;
throw error;