Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for test_catchAsFessSystemException (0.27 seconds)

  1. src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java

            } catch (final LlmException e) {
                caught = true;
                assertEquals("Test exception", e.getMessage());
            }
            assertTrue(caught);
        }
    
        @Test
        public void test_catchAsFessSystemException() {
            boolean caught = false;
            try {
                throw new LlmException("Test exception");
            } catch (final FessSystemException e) {
                caught = true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 04:19:06 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            } catch (Exception e) {
                fail("Should have caught ThemeException, but caught: " + e.getClass());
            }
        }
    
        @Test
        public void test_catchAsFessSystemException() {
            // Test catching as parent exception type
            String message = "Theme error";
    
            try {
                throw new ThemeException(message);
            } catch (FessSystemException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

                assertNull(e.getCause());
            } catch (Exception e) {
                fail("Should have caught ContentNotFoundException");
            }
        }
    
        @Test
        public void test_catchAsFessSystemException() {
            // Test catching as parent exception type
            String parentUrl = "http://example.com/parent";
            String url = "http://example.com/child";
    
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java

                assertEquals(expectedCause, e.getCause());
            } catch (Exception e) {
                fail("Should have caught SearchQueryException");
            }
        }
    
        @Test
        public void test_catchAsFessSystemException() {
            // Test catching as parent exception type
            String message = "Polymorphism test";
    
            try {
                throw new SearchQueryException(message);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top