Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for fillInStackTrace (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        }
    
        @Test
        public void test_fillInStackTrace() {
            // Test fillInStackTrace returns null for performance optimization
            UserRoleLoginException exception = new UserRoleLoginException(RootAction.class);
            Throwable result = exception.fillInStackTrace();
            assertNull(result);
    
            // Verify that stack trace is not generated
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

        @Test
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            UnsupportedSearchException exception = new UnsupportedSearchException("Stack trace test");
    
            StackTraceElement[] originalStackTrace = exception.getStackTrace();
            assertNotNull(originalStackTrace);
    
            Throwable filled = exception.fillInStackTrace();
            assertSame(exception, filled);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

        }
    
        @Test
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            ResultOffsetExceededException exception = new ResultOffsetExceededException("Stack trace test");
    
            StackTraceElement[] originalStackTrace = exception.getStackTrace();
            Throwable result = exception.fillInStackTrace();
            StackTraceElement[] newStackTrace = exception.getStackTrace();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
Back to Top