- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 51 for throwable (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java
} @Test public void test_multiLevelExceptionChain() { // Test multi-level exception chain Throwable level3 = new NullPointerException("Null value"); Throwable level2 = new IllegalStateException("Invalid state", level3); Throwable level1 = new RuntimeException("Runtime error", level2); PluginException exception = new PluginException("Plugin failure", level1);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertTrue(exception.getCause().getStackTrace().length > 0); } @Test public void test_multiLevelCause() { // Test with nested exceptions Throwable rootCause = new IllegalStateException("Root problem"); Throwable intermediateCause = new RuntimeException("Intermediate problem", rootCause); GsaConfigException exception = new GsaConfigException("Top level GSA error", intermediateCause);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
assertEquals(message, exception.getMessage()); Throwable cause1 = exception.getCause(); assertTrue(cause1 instanceof RuntimeException); Throwable cause2 = cause1.getCause(); assertTrue(cause2 instanceof AssertionError); Throwable cause3 = cause2.getCause(); assertTrue(cause3 instanceof IllegalStateException); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java
} @Test public void test_nestedExceptionChain() { // Test nested exception chain Throwable rootCause = new IllegalArgumentException("Root cause"); Throwable middleCause = new IllegalStateException("Middle cause", rootCause); ScheduledJobException exception = new ScheduledJobException("Top level error", middleCause);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
private final String throwable; /** * Constructs a new LogNotificationEvent. * * @param timestamp the event timestamp in milliseconds * @param level the log level name * @param loggerName the logger name * @param message the log message * @param throwable the throwable string, or null */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
} @Test public void test_constructor_withNestedCause() { // Test constructor with nested exception causes Throwable rootCause = new IllegalArgumentException("Root cause"); Throwable middleCause = new IllegalStateException("Middle cause", rootCause); String message = "Command execution failed with nested exception";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
assertNull(exception.getCause()); } @Test public void test_constructor_withNestedCause() { // Test constructor with nested exceptions Throwable rootCause = new IllegalStateException("Root cause"); Throwable intermediateCause = new RuntimeException("Intermediate cause", rootCause); String message = "Top level error";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertNull(exception.getCause()); } @Test public void test_constructor_withNullCause() { // Test with null cause DataStoreException exception = new DataStoreException((Throwable) null); assertNotNull(exception); assertNull(exception.getCause()); assertNull(exception.getMessage()); } @Test public void test_constructor_withNullMessageAndCause() {
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) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
} @Test public void test_constructor_withMessageAndCause() { // Test constructor with message and cause String message = "Test exception message with cause"; Throwable cause = new RuntimeException("Root cause"); FessSystemException exception = new FessSystemException(message, cause); assertEquals(message, exception.getMessage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmException.java
* Creates a new exception with the specified message and cause. * * @param message the error message * @param cause the cause of the exception */ public LlmException(final String message, final Throwable cause) { super(message, cause); errorCode = ERROR_UNKNOWN; } /** * Creates a new exception with the specified message and error code. * * @param message the error messageCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 3.5K bytes - Click Count (0)