UnauthorizedException constructor
- String? message,
- DioException? originalException,
- String? errorCode,
- String? traceId,
Creates an UnauthorizedException with an optional custom message.
Implementation
const UnauthorizedException({String? message, super.originalException, super.errorCode, super.traceId})
: super(message: message ?? "Your session has expired. Please log in again.");