Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_stackTraceForMessageAndCauseConstructor (1.64 sec)

  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);
        }
    
        public void test_stackTraceForMessageAndCauseConstructor() {
            // Test that stack trace is available when using message and cause constructor
            ThumbnailGenerationException exception = new ThumbnailGenerationException("Test", new Exception());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top