NotFoundException constructor

NotFoundException(
  1. String message, {
  2. int? status,
})

Implementation

NotFoundException(String message, {int? status})
  : super(message, "Not Found: ", status: status ?? 404);