isNonUnauthorizedException static method
Implementation
static bool isNonUnauthorizedException(Object exception) {
return exception is TimeoutException ||
exception is ServerException ||
exception is InternetConnectionIssueFailure ||
(exception is SocketException);
}