ServerBusyException constructor
ServerBusyException(
- ServiceResponse response
Implementation
ServerBusyException(ServiceResponse response) : super(response) {
if (response.ErrorDetails != null &&
response.ErrorDetails!.containsKey(
ServerBusyException.BackOffMillisecondsKey)) {
_backOffMilliseconds = int.tryParse(
response.ErrorDetails![ServerBusyException.BackOffMillisecondsKey]!);
}
}