752 questions
2
votes
2
answers
2k
views
How to change http exception in adonisjs?
I am newbie in adonisjs.
I want to implement custom response if route method not match.
I have route like this
Route.post('/create', function * (request, response) {response.send('success')})
when ...