Searched defs:error (Results 1 - 11 of 11) sorted by relevance

/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DXMLErrorLogger.java44 public void error(SAXParseException e) throws SAXException { method in class:XMLErrorLogger
58 public void error(TransformerException e) throws TransformerException { method in class:XMLErrorLogger
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/store/
H A DWindowsDirectory.cpp27 * Utility to format a Windows system error code into an exception.
29 void throwIOException(JNIEnv *env, DWORD error) argument
38 NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &msg, 0, NULL );
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestIndexWriterWithThreads.java42 Throwable error; field in class:TestIndexWriterWithThreads.IndexerThread
88 error = ioe;
97 error = t;
140 assertTrue("hit unexpected Throwable", threads[i].error == null);
248 assertTrue("hit unexpected Throwable", threads[i].error == null);
H A DTestIndexReaderReopen.java829 if (threads[i].error != null) {
830 String msg = "Error occurred in thread " + threads[i].getName() + ":\n" + threads[i].error.getMessage();
875 private Throwable error; field in class:TestIndexReaderReopen.ReaderThread
892 this.error = r;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DLuceneJUnitResultFormatter.java236 * A test caused an error.
238 * @param error the error thrown by the test
240 public void addError(Test test, Throwable error) { argument
241 formatError("\tCaused an ERROR", test, error);
258 * Format an error and print it.
259 * @param type the type of error
261 * @param error the exception that the test threw
264 Throwable error) {
271 append(error
263 formatError(String type, Test test, Throwable error) argument
[all...]
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestIndexWriterWithThreads.java41 Throwable error; field in class:TestIndexWriterWithThreads.IndexerThread
87 error = ioe;
96 error = t;
139 assertTrue("hit unexpected Throwable", threads[i].error == null);
247 assertTrue("hit unexpected Throwable", threads[i].error == null);
H A DTestIndexReaderReopen.java833 if (threads[i].error != null) {
834 String msg = "Error occurred in thread " + threads[i].getName() + ":\n" + threads[i].error.getMessage();
879 private Throwable error; field in class:TestIndexReaderReopen.ReaderThread
896 this.error = r;
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DLuceneJUnitResultFormatter.java236 * A test caused an error.
238 * @param error the error thrown by the test
240 public void addError(Test test, Throwable error) { argument
241 formatError("\tCaused an ERROR", test, error);
258 * Format an error and print it.
259 * @param type the type of error
261 * @param error the exception that the test threw
264 Throwable error) {
271 append(error
263 formatError(String type, Test test, Throwable error) argument
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/taxonomy/
H A DTestTaxonomyCombined.java796 final Throwable[] error = new Throwable[] { null };
810 error[0] = e;
831 assertNull("Unexpcted exception at retry "+retry+" retrieval "+retrieval[0]+": \n"+stackTraceStr(error[0]), error[0]);
839 private String stackTraceStr(final Throwable error) { argument
840 if (error == null) {
845 error.printStackTrace(pw);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DMergePolicy.java79 Throwable error; field in class:MergePolicy.OneMerge
96 synchronized void setException(Throwable error) { argument
97 this.error = error;
103 return error;
H A DCheckIndex.java207 public Throwable error = null; field in class:CheckIndex.Status.FieldNormStatus
224 public Throwable error = null; field in class:CheckIndex.Status.TermIndexStatus
239 public Throwable error = null; field in class:CheckIndex.Status.StoredFieldStatus
254 public Throwable error = null; field in class:CheckIndex.Status.TermVectorStatus
588 if (segInfoStat.fieldNormStatus.error != null) {
590 } else if (segInfoStat.termIndexStatus.error != null) {
592 } else if (segInfoStat.storedFieldStatus.error != null) {
594 } else if (segInfoStat.termVectorStatus.error != null) {
660 status.error = e;
830 status.error
[all...]

Completed in 28 milliseconds