- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for fillInStackTrace (0.25 seconds)
-
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; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 2K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
assertTrue(foundTestMethod); } @Test 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());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
assertNull(localizedMessage); } @Test public void test_fillInStackTrace() { // Test fillInStackTrace method DictionaryExpiredException exception = new DictionaryExpiredException(); Throwable result = exception.fillInStackTrace(); assertNotNull(result); assertSame(exception, result); StackTraceElement[] stackTrace = result.getStackTrace();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertTrue(toString.contains(message)); } @Test 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());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
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() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8K bytes - Click Count (0)