- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for occurred (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
* This exception provides information about the URL where the error occurred * and whether the crawling process should be aborted. */ public class DataStoreCrawlingException extends CrawlingAccessException { private static final long serialVersionUID = 1L; /** * The URL where the crawling error occurred. */ private final String url; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
* This is a required field used for identifying which crawler process failed. */ @Required public String threadName; /** * The name or type of the error that occurred. * This field provides a categorization of the failure type. */ public String errorName; /** * The detailed error log or stack trace for the failure.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmStreamCallback.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 1.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java
@Test public void test_constructorWithMessageAndCause() { final RuntimeException cause = new RuntimeException("Root cause"); final LlmException exception = new LlmException("Error occurred", cause); assertEquals("Error occurred", exception.getMessage()); assertSame(cause, exception.getCause()); } @Test public void test_extendsFromFessSystemException() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 04:19:06 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
assertEquals(cause, exception.getCause()); } @Test public void test_constructor_withMessage() { // Test constructor with message only final String message = "Job processing error occurred"; final JobProcessingException exception = new JobProcessingException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
public class ScriptEngineExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test constructor with message only String message = "Script engine error occurred"; ScriptEngineException exception = new ScriptEngineException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
assertNull(exception.getCause()); } @Test public void test_constructor_withMessageAndNullCause() { // Test constructor with message and null cause String message = "LDAP error occurred"; LdapOperationException exception = new LdapOperationException(message, null); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
} } @Test public void test_throwAndCatchWithCause() { // Test throwing and catching the exception with cause String expectedMessage = "System error occurred"; Exception expectedCause = new IllegalStateException("Invalid state"); try { throw new FessSystemException(expectedMessage, expectedCause); } catch (FessSystemException e) {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/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
public class GsaConfigExceptionTest extends UnitFessTestCase { @Test public void test_constructorWithMessage() { // Test constructor with message only String message = "GSA configuration error occurred"; GsaConfigException exception = new GsaConfigException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); }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/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java
*/ void onChunk(String content, boolean done); /** * Called when an error occurs during processing. * * @param phase the phase where the error occurred * @param error the error message */ void onError(String phase, String error); /** * Returns a no-op callback implementation. * * @return a callback that does nothing */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:32:04 GMT 2026 - 3.3K bytes - Click Count (0)