checkForTimeout method
void
checkForTimeout()
inherited
Check if this request has exceeded the timeout threshold.
Implementation
void checkForTimeout() {
if (isTimedOut) {
throw RequestException(method, uri, this, null, _timeoutError);
}
}