Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_exceptionInheritance (0.18 sec)

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

            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_exceptionInheritance() {
            // Test that JobNotFoundException properly extends FessSystemException
            JobNotFoundException exception = new JobNotFoundException("test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java

            // Verify exception is serializable
            assertTrue(exception instanceof java.io.Serializable);
        }
    
        public void test_exceptionInheritance() {
            // Test that exception is a RuntimeException
            UserRoleLoginException exception = new UserRoleLoginException(RootAction.class);
            assertTrue(exception instanceof RuntimeException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

                assertEquals(expectedCause, e.getCause());
            } catch (Exception e) {
                fail("Should have caught CommandExecutionException");
            }
        }
    
        public void test_exceptionInheritance() {
            // Test exception inheritance hierarchy
            CommandExecutionException exception = new CommandExecutionException("Test");
    
            // Check inheritance chain
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top