NocRateLimitException constructor Null safety

const NocRateLimitException(
  1. String message,
  2. {int? statusCode}
)

Creates a NocRateLimitException with the given message.

Implementation

const NocRateLimitException(String message, {int? statusCode})
    : super(message, statusCode: statusCode);