Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RuntimeException (0.06 sec)

  1. 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)
  2. 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)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java

                        content = content.replaceAll(rule.getKey(), rule.getValue());
                    }
                    resultData.setData(content.getBytes());
                } catch (Exception e) {
                    throw new RuntimeException(e);
                }
    
                return resultData;
            }
    
            @Override
            public Object getData(AccessResultData<?> accessResultData) {
                if (accessResultData == null) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 28K bytes
    - Viewed (0)
Back to top