ForbiddenException constructor
- String? message,
- DioException? originalException,
- String? errorCode,
- String? traceId,
Creates a ForbiddenException with an optional custom message.
Implementation
const ForbiddenException({String? message, super.originalException, super.errorCode, super.traceId})
: super(message: message ?? "You do not have permission to perform this action.");