- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for RuntimeException (0.07 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
CrawlerSystemException exception2 = new CrawlerSystemException(errorCause); assertSame(errorCause, exception2.getCause()); // With RuntimeException cause RuntimeException runtimeCause = new RuntimeException("Runtime cause"); CrawlerSystemException exception3 = new CrawlerSystemException(runtimeCause); assertSame(runtimeCause, exception3.getCause());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
protected void addDocumentToQueue() { if (docCount.get() > getLimitDocNum(totalDocNum, limitPercentage, limitNumber)) { isFinished.set(true); return; } RuntimeException exception = null; for (int i = 0; i < maxRetryCount; i++) { try { final SearchResponse response; if (scrollId == null) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
factory.setOnDestroyListener(new OnDestroyListener<TestComponent>() { @Override public void onDestroy(PooledObject<TestComponent> p) { throw new RuntimeException("Test exception in listener"); } }); try { factory.destroyObject(pooledObject); fail("Should propagate exception from listener");Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 28K bytes - Viewed (0)