- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for error_message (0.33 seconds)
-
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
@Test public void test_throwAndCatch() { // Test throwing and catching the exception String errorMessage = "LDAP server not reachable"; try { throw new LdapConfigurationException(errorMessage); } catch (LdapConfigurationException e) { assertEquals(errorMessage, e.getMessage()); assertNull(e.getCause()); } catch (Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
final List<VaMessenger<FessMessages>> errorMessages = new ArrayList<>(); AdminSearchlistAction.validateFields(doc, errorMessages::add); assertFalse(errorMessages.isEmpty()); // Verify error messages use field names without doc. prefix final FessMessages messages = new FessMessages(); errorMessages.forEach(m -> m.message(messages));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java
@Test public void test_constructor_withServletException() { // Create a ServletException with a message String errorMessage = "Test servlet error message"; ServletException servletException = new ServletException(errorMessage); // Wrap it in ServletRuntimeException ServletRuntimeException runtimeException = new ServletRuntimeException(servletException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.9K bytes - Click Count (0) -
src/main/webapp/js/chat.js
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
} final String errorMessage = longMessage.toString(); // Create mock SearchEngineClient that throws exception with long message searchEngineClient = new SearchEngineClient() { @Override public long deleteByQuery(String index, QueryBuilder query) { throw new RuntimeException(errorMessage); } };Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
AbstractFuture<String> future = new AbstractFuture<String>() {}; AtomicReference<String> errorMessage = Atomics.newReference(); executor.execute( () -> { future.set("success"); if (!future.isDone()) { errorMessage.set("Set call exited before future was complete."); } }); executor.execute( () -> {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 45.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
AbstractFuture<String> future = new AbstractFuture<String>() {}; AtomicReference<String> errorMessage = Atomics.newReference(); executor.execute( () -> { future.set("success"); if (!future.isDone()) { errorMessage.set("Set call exited before future was complete."); } }); executor.execute( () -> {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 45.2K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java
try { new NullPointerTester().testMethod(bar, method); } catch (AssertionError incorrectError) { String errorMessage = rootLocaleFormat("Should not have flagged method %s for %s", method.getName(), bar); assertWithMessage(errorMessage).that(incorrectError).isNull(); } } public void verifyBarFail(Method method, TwoArg bar) { try {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 47.9K bytes - Click Count (0) -
CONTRIBUTING.md
* Add documentation to the User Manual and DSL Reference (under [platforms/documentation/docs/src/docs](platforms/documentation/docs/src/docs/)). * For error messages related changes, follow the [ErrorMessages Guide](contributing/ErrorMessages.md). * Add Javadoc for new methods and classes, following the [Javadoc Style Guide](contributing/JavadocStyleGuide.md). Javadoc is *required* for new public, top-level types.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0)