Example usage for org.apache.solr.common SolrException getRootCause

List of usage examples for org.apache.solr.common SolrException getRootCause

Introduction

In this page you can find the example usage for org.apache.solr.common SolrException getRootCause.

Prototype

public static Throwable getRootCause(Throwable t) 

Source Link

Usage

From source file:com.ngdata.hbaseindexer.indexer.FusionPipelineClient.java

License:Apache License

private static boolean shouldRetry(Exception exc) {
    Throwable rootCause = SolrException.getRootCause(exc);
    return (rootCause instanceof ConnectException || rootCause instanceof SocketException);
}