Searched refs:cause (Results 1 - 12 of 12) sorted by relevance

/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/
H A DSolrServerException.java29 public SolrServerException(String message, Throwable cause) { argument
30 super(message, cause);
37 public SolrServerException(Throwable cause) { argument
38 super(cause);
44 Throwable cause = t.getCause();
45 if (cause!=null) {
46 t = cause;
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/
H A DFacetException.java37 public FacetException(String message, Throwable cause) { argument
39 initCause(cause);
42 public FacetException(Throwable cause) { argument
43 initCause(cause);
/lucene-3.6.0/lucene/contrib/xml-query-parser/src/java/org/apache/lucene/xmlparser/
H A DParserException.java41 * @param cause
43 public ParserException(String message, Throwable cause) { argument
44 super(message, cause);
47 * @param cause
49 public ParserException(Throwable cause) { argument
50 super(cause);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DFieldReaderException.java24 * detail message. The cause is not initialized, and may subsequently be
31 * Constructs a new runtime exception with the specified cause and a
32 * detail message of <tt>(cause==null &#63; null : cause.toString())</tt>
34 * <tt>cause</tt>).
39 * @param cause the cause (which is saved for later retrieval by the
41 * permitted, and indicates that the cause is nonexistent or
45 public FieldReaderException(Throwable cause) { argument
46 super(cause);
75 FieldReaderException(String message, Throwable cause) argument
[all...]
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDataImportHandlerException.java46 public DataImportHandlerException(int err, String message, Throwable cause) { argument
47 super(message + (SolrWriter.getDocCount() == null ? "" : MSG + SolrWriter.getDocCount()), cause);
51 public DataImportHandlerException(int err, Throwable cause) { argument
52 super(cause);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DTwoPhaseCommitTool.java74 public PrepareCommitFailException(Throwable cause, TwoPhaseCommit obj) { argument
76 initCause(cause);
87 public CommitFailException(Throwable cause, TwoPhaseCommit obj) { argument
89 initCause(cause);
H A DRamUsageEstimator.java543 final Throwable cause = ite.getCause();
544 if (cause instanceof RuntimeException)
545 throw (RuntimeException) cause;
546 if (cause instanceof Error)
547 throw (Error) cause;
552 f.getDeclaringClass().getName() + "#" + f.getName(), cause);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/
H A DStringIndexDocValues.java92 final RuntimeException cause) {
94 "DocValues for field: " + fieldName, cause);
91 StringIndexException(final String fieldName, final RuntimeException cause) argument
/lucene-3.6.0/solr/core/src/test/org/apache/solr/search/function/distance/
H A DDistanceFunctionTest.java187 Throwable cause = e.getCause();
188 assertNotNull(cause);
189 assertTrue(cause instanceof SolrException);
/lucene-3.6.0/solr/test-framework/src/java/org/apache/solr/
H A DSolrTestCaseJ4.java1136 for (Throwable cause = t; null != cause; cause = cause.getCause()) {
1137 result = cause;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java356 // sets the cause of the incoming ioe to be the stack
542 Exception cause = null;
545 cause = stacktraces.next();
548 throw new RuntimeException("MockDirectoryWrapper: cannot close: there are still open files: " + openFiles, cause);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java312 // sets the cause of the incoming ioe to be the stack
492 Exception cause = null;
495 cause = stacktraces.next();
498 throw new RuntimeException("MockDirectoryWrapper: cannot close: there are still open files: " + openFiles, cause);

Completed in 25 milliseconds