Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClassNotFoundException (0.23 sec)

  1. README.md

    - **Exception wrapping** - Checked exceptions are consistently wrapped in runtime exceptions (e.g., `ClassNotFoundException` → `ClassNotFoundRuntimeException`)
    - **Bean introspection** - The comprehensive `BeanDesc` system provides metadata about JavaBeans, accessed through `BeanDescFactory.getBeanDesc(Class)`
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                assertTrue("ProcessDestroyer should extend TimerTask", java.util.TimerTask.class.isAssignableFrom(destroyerClass));
            } catch (final ClassNotFoundException e) {
                fail("ProcessDestroyer inner class should exist");
            }
        }
    
        // Test exception handling scenarios
        public void test_exception_handling_scenarios() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
Back to top