NotFoundException constructor

NotFoundException(
  1. String message
)

Creates a NotFoundException with the given error message.

Implementation

NotFoundException(String message) : super(message, statusCode: 404);