NotFoundException constructor
const
NotFoundException({
- required String message,
- StackTrace? stackTrace,
Exception thrown when API returns a 404 response.
Implementation
const NotFoundException({
required super.message,
super.stackTrace,
}) : super(code: 404);