Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fillInStackTrace (0.09 sec)

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

        }
    
        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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

        }
    
        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);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java

            }
            assertTrue(foundTestMethod);
        }
    
        public void test_fillInStackTrace() {
            // Test that fillInStackTrace works properly
            JobNotFoundException exception = new JobNotFoundException("Fill stack trace test");
    
            Throwable filled = exception.fillInStackTrace();
    
            assertNotNull(filled);
            assertEquals(exception, filled);
            assertNotNull(filled.getStackTrace());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

        }
    
        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();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

            assertNull(localizedMessage);
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            DictionaryExpiredException exception = new DictionaryExpiredException();
            Throwable result = exception.fillInStackTrace();
    
            assertNotNull(result);
            assertSame(exception, result);
    
            StackTraceElement[] stackTrace = result.getStackTrace();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            assertTrue(toString.contains(message));
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            DataStoreException exception = new DataStoreException("Stack trace test");
            Throwable filled = exception.fillInStackTrace();
    
            assertNotNull(filled);
            assertEquals(exception, filled);
            assertNotNull(filled.getStackTrace());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

          // IteratorTester doesn't expect exceptions for hasNext().
          return true;
        }
    
        @Override
        public E next() {
          ex.fillInStackTrace();
          throw ex;
        }
    
        @Override
        public void remove() {
          ex.fillInStackTrace();
          throw ex;
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top