Searched defs:SolrException (Results 1 - 2 of 2) sorted by relevance
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/ |
H A D | SolrException.java | 23 * @deprecated Use org.apache.solr.common.SolrException 26 public class SolrException extends org.apache.solr.common.SolrException { class in inherits:org.apache.solr.common.SolrException 28 public SolrException(ErrorCode code, String msg, boolean alreadyLogged) { method in class:SolrException 32 public SolrException(ErrorCode code, String msg, Throwable th, boolean alreadyLogged) { method in class:SolrException 36 public SolrException(ErrorCode code, String msg, Throwable th) { method in class:SolrException 40 public SolrException(ErrorCode code, Throwable th) { method in class:SolrException 44 public SolrException(ErrorCode code, String msg) { method in class:SolrException
|
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/ |
H A D | SolrException.java | 29 * @version $Id: SolrException.java 1303037 2012-03-20 17:40:40Z jdyer $ 31 public class SolrException extends RuntimeException { class in inherits:RuntimeException 64 public SolrException(ErrorCode code, String msg) { method in class:SolrException 70 * use {@link #SolrException(ErrorCode, String)} 73 public SolrException(ErrorCode code, String msg, boolean alreadyLogged) { method in class:SolrException 79 * use {@link #SolrException(ErrorCode, String, Throwable)} 82 public SolrException(ErrorCode code, String msg, Throwable th, boolean alreadyLogged) { method in class:SolrException 88 public SolrException(ErrorCode code, String msg, Throwable th) { method in class:SolrException 89 this(code, msg, th, (th instanceof SolrException) ? ((SolrException)t 92 public SolrException(ErrorCode code, Throwable th) { method in class:SolrException 100 public SolrException(int code, String msg) { method in class:SolrException 109 public SolrException(int code, String msg, boolean alreadyLogged) { method in class:SolrException 119 public SolrException(int code, String msg, Throwable th, boolean alreadyLogged) { method in class:SolrException 129 public SolrException(int code, String msg, Throwable th) { method in class:SolrException 137 public SolrException(int code, Throwable th) { method in class:SolrException [all...] |
Completed in 57 milliseconds