NotFoundException constructor

NotFoundException({
  1. dynamic message = 'Not Fount 404',
  2. int code = HttpStatus.notFound,
  3. RespondType responseType = RespondType.html,
})

Implementation

NotFoundException({
  super.message = 'Not Fount 404',
  super.code = HttpStatus.notFound,
  super.responseType = RespondType.html,
});