Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for testInheritance (0.59 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java

        }
    
        private void methodThatThrowsException() {
            throw new CrawlerSystemException("Method exception");
        }
    
        /**
         * Test exception inheritance
         */
        public void test_inheritance() {
            CrawlerSystemException exception = new CrawlerSystemException("Test");
    
            // Should be instance of RuntimeException
            assertTrue(exception instanceof RuntimeException);
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 20K bytes
    - Viewed (0)
Back to top