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