NotFoundException constructor

const NotFoundException({
  1. required String message,
  2. String? type,
  3. String? code,
  4. String? param,
  5. String? requestId,
  6. Map<String, dynamic>? body,
  7. Object? cause,
})

Creates a new NotFoundException.

Implementation

const NotFoundException({
  required super.message,
  super.type,
  super.code,
  super.param,
  super.requestId,
  super.body,
  super.cause,
}) : super(statusCode: 404);