Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_stackTraceForMessageAndCauseConstructor (0.2 seconds)

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

            // The message-only constructor uses super(message, false, false) which disables stack trace
            assertEquals(0, exception.getStackTrace().length);
        }
    
        @Test
        public void test_stackTraceForMessageAndCauseConstructor() {
            // Test that stack trace is available when using message and cause constructor
            ThumbnailGenerationException exception = new ThumbnailGenerationException("Test", new Exception());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.3K bytes
    - Click Count (0)
Back to Top