UnauthorizedException constructor

UnauthorizedException({
  1. String? message,
  2. StackTrace? stackTrace,
})

Implementation

UnauthorizedException({String? message, StackTrace? stackTrace})
    : super(
        StatusCode.UNAUTHORIZED,
        message: message,
        stackTrace: stackTrace,
      );