Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for fillInStackTrace (0.06 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/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

            return actionClass;
        }
    
        /**
         * Overrides fillInStackTrace to return null for performance optimization.
         * This prevents stack trace generation for this exception type.
         *
         * @return null to skip stack trace generation
         */
        @Override
        public synchronized Throwable fillInStackTrace() {
            return null;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

      private static final class TimeoutFutureException extends TimeoutException {
        private TimeoutFutureException(String message) {
          super(message);
        }
    
        @Override
        public synchronized Throwable fillInStackTrace() {
          setStackTrace(new StackTraceElement[0]);
          return this; // no stack trace, wouldn't be useful anyway
        }
      }
    
      @Override
      protected @Nullable String pendingToString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top