NotFoundException constructor
- String? message,
- DioException? originalException,
- String? errorCode,
- String? traceId,
Creates a NotFoundException with an optional custom message.
Implementation
const NotFoundException({String? message, super.originalException, super.errorCode, super.traceId})
: super(message: message ?? "The requested item could not be found.");