Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_multipleExceptionTypes (0.45 sec)

  1. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

                assertEquals("IO error", e.getCause().getMessage());
            } catch (Exception e) {
                fail("Should have caught DataStoreException specifically");
            }
        }
    
        public void test_multipleExceptionTypes() {
            // Test with different types of causes
            DataStoreException withIOException = new DataStoreException("IO Error", new java.io.IOException("File not found"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            assertNotNull(exception);
            assertEquals(longMessage, exception.getMessage());
            assertEquals(messageCode, exception.getMessageCode());
        }
    
        public void test_multipleExceptionTypes() {
            // Setup - test with different types of causes
            final String message = "Query processing error";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top