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