manuseio de erro de gerador expresso
app.get('/', function (req, res) {
throw new Error('BROKEN') // Express will catch this on its own.
})
Strange Shrew
app.get('/', function (req, res) {
throw new Error('BROKEN') // Express will catch this on its own.
})