- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for underline (0.05 seconds)
-
src/main/webapp/css/chat.css
.source-link { font-size: 0.8125rem; color: #0052cc; text-decoration: none; display: inline-flex; align-items: center; } .source-link:hover { text-decoration: underline; } .source-link .source-index { background-color: #e9ecef; color: #495057; padding: 0.125rem 0.375rem; border-radius: 0.25rem; font-size: 0.75rem; margin-right: 0.5rem;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
Exception cause = new RuntimeException("Underlying error"); DictionaryException exception = new DictionaryException(message, cause); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNotNull(exception.getCause()); assertEquals(cause, exception.getCause()); assertEquals("Underlying error", exception.getCause().getMessage()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
* The abort flag is set to false by default. * * @param url the URL where the crawling error occurred * @param message the error message * @param cause the underlying exception that caused this error */ public DataStoreCrawlingException(final String url, final String message, final Throwable cause) { this(url, message, cause, false); } /**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/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
String message = "Script execution failed"; Exception cause = new RuntimeException("Underlying error"); ScriptEngineException exception = new ScriptEngineException(message, cause); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertEquals("Underlying error", exception.getCause().getMessage()); } @Test
Created: 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/DataStoreExceptionTest.java
// Test with cause only Exception cause = new IllegalStateException("Underlying error"); DataStoreException exception = new DataStoreException(cause); assertNotNull(exception); assertEquals(cause, exception.getCause()); assertEquals("java.lang.IllegalStateException: Underlying error", exception.getMessage()); assertTrue(exception instanceof FessSystemException); }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/main/java/org/codelibs/fess/exception/SsoLoginException.java
} /** * Constructs a new SsoLoginException with the specified detail message and cause. * * @param message The detail message explaining the SSO login failure * @param cause The underlying exception that caused this SSO login failure */ public SsoLoginException(final String message, final Throwable cause) { super(message, cause); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java
/** * Constructs a new ThumbnailGenerationException with the specified message and cause. * * @param message the exception message * @param cause the underlying cause of this exception */ public ThumbnailGenerationException(final String message, final Throwable cause) { super(message, cause); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 1.5K bytes - Click Count (0) -
architecture/standards/0007-java-pre-requisite.md
However, this would limit the ability of the Gradle ecosystem plugin authors to take advantage of new Java features and improvements. One example is when one of the most popular plugins started requiring Java 17 because the underlying framework behind the plugin began requiring 17, and code from the framework was used in the plugin itself. What would have happened if Gradle was limited to _only Java 11_ at the time? ## Decision
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
/** * Constructs a new SSO process exception with the specified detailed message and cause. * * @param message The detailed error message explaining the cause of the exception * @param cause The underlying exception that caused this SSO process exception */ public SsoProcessException(final String message, final Throwable cause) { super(message, cause); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
@Test public void test_constructorWithMessageAndCause() { // Test constructor with message and cause String message = "Storage operation failed"; Exception cause = new RuntimeException("Underlying error"); StorageException exception = new StorageException(message, cause); assertNotNull(exception); assertEquals(message, exception.getMessage());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)