Just set file size limit can server throws an error with 500 status code. I need to catch `Error:`File too large` and throw 416 code. ``` router.post('/upload', upload.single('file'), async ctx => { // how to catch error here ? }) ```
Just set file size limit can server throws an error with 500 status code.
I need to catch
Error:File too large` and throw 416 code.