Searched defs:exception (Results 1 - 8 of 8) sorted by relevance

/lucene-3.6.0/solr/contrib/uima/src/java/org/apache/solr/uima/processor/exception/
H A DFieldMappingException.java1 package org.apache.solr.uima.processor.exception;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DIOUtils.java69 * @param priorException <tt>null</tt> or an exception that will be rethrown after method completion
129 * throws the first exception it hit while closing, or
231 * @param exception this exception should get the suppressed one added
232 * @param suppressed the suppressed exception
234 private static final void addSuppressed(Throwable exception, Throwable suppressed) { argument
235 if (SUPPRESS_METHOD != null && exception != null && suppressed != null) {
237 SUPPRESS_METHOD.invoke(exception, suppressed);
246 * Unlike Java's defaults this reader will throw an exception if your it detects
266 * Unlike Java's defaults this reader will throw an exception i
[all...]
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DUncaughtExceptionsRule.java50 public final Throwable exception; field in class:UncaughtExceptionsRule.UncaughtExceptionEntry
52 public UncaughtExceptionEntry(Thread thread, Throwable exception) { argument
54 this.exception = exception;
61 super("Uncaught exception by thread: " + e.thread, e.exception);
138 System.err.print("NOTE: Uncaught exception handler caught a failed assumption at "
146 sw.write("\n===>\nUncaught exception by thread: " + t + "\n");
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/component/
H A DShardResponse.java27 private Throwable exception; field in class:ShardResponse
35 + (exception==null ? "" : "\n\texception="+ SolrException.toStr(exception))
41 return exception;
74 void setException(Throwable exception) argument
76 this.exception = exception;
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/compound/hyphenation/
H A DPatternParser.java53 ArrayList<Object> exception; field in class:PatternParser
90 * @throws HyphenationException In case of an exception while parsing
100 * @throws HyphenationException In case of an exception while parsing
116 * @throws HyphenationException In case of an exception while parsing
301 exception = new ArrayList<Object>();
304 exception.add(token.toString());
306 exception.add(new Hyphen(attrs.getValue("pre"), attrs.getValue("no"),
328 exception.add(word);
329 exception = normalizeException(exception);
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/en/
H A DKStemmer.java227 boolean exception; field in class:KStemmer.DictEntry
232 this.exception = isException;
481 if (e != null && !e.exception) {
482 matchedEntry = e; // only cache if it's not an exception.
507 * `aided' -> `aid'. The exception for double s is used to prevent
609 if (entry != null) if (!entry.exception) /*
611 * not an exception
698 if (!entry.exception) /* if it's in the dictionary and not an exception */
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDocBuilder.java423 private Exception exception; field in class:DocBuilder.EntityRunner
472 exception = e;
485 Exception copy = exception;
487 exception = null;
548 exception = dihe;
551 exception = null;//should not propogate up
557 exception = null;//should not propogate up
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DLuceneTestCase.java159 public final Throwable exception; field in class:LuceneTestCase.UncaughtExceptionEntry
161 public UncaughtExceptionEntry(Thread thread, Throwable exception) { argument
163 this.exception = exception;
492 // restore the default uncaught exception handler
550 entry.exception.printStackTrace(System.err);
656 // report this in the event of any exception/failure

Completed in 83 milliseconds