NotFoundException constructor
NotFoundException({
- String message = 'Not found',
- Object? origin,
- StackTrace? stackTrace,
Implementation
NotFoundException({
String message = 'Not found',
Object? origin,
StackTrace? stackTrace,
}) : super(message: message, origin: origin, stackTrace: stackTrace ?? StackTrace.current);