NotFoundException constructor

NotFoundException(
  1. String message, {
  2. dynamic details,
})

Implementation

NotFoundException(
  super.message, {
  super.details,
}) : super(
        statusCode: 404,
        title: 'Not Found',
        type: 'not_found',
      );