- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,363 for Message (0.03 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryException.java
* Creates a new DictionaryException with the specified message and cause. * * @param message the detail message * @param cause the underlying cause of the exception */ public DictionaryException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new DictionaryException with the specified message. * * @param message the detail message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/StorageException.java
* * @param message The detail message. * @param cause The cause of the exception. */ public StorageException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new storage exception with the specified detail message. * * @param message The detail message. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ExecutionTimeoutException.java
/** * Constructs a new exception with the specified detail message and cause. * * @param message the detail message * @param cause the cause (which is saved for later retrieval by the {@link Throwable#getCause()} method) */ public ExecutionTimeoutException(final String message, final Throwable cause) { super(message, cause); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilderFactory.java
*/ int getTerminalWidth(); /** * Creates a new message builder. * @return a new message builder */ @Nonnull MessageBuilder builder(); /** * Creates a new message builder of the specified size. * @param size the initial size of the message builder buffer * @return a new message builder */ @Nonnull MessageBuilder builder(int size);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 08 10:37:09 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
} /** * Returns the message integrity code (MIC) for this Type-3 message. * * @return A <code>byte[]</code> containing the message integrity code. */ public byte[] getMic() { return this.mic; } /** * Sets the message integrity code (MIC) for this Type-3 message. * * @param mic * NTLM mic to set (16 bytes)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreException.java
* * @param message the error message * @param cause the underlying cause of this exception */ public DataStoreException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new DataStoreException with the specified message. * * @param message the error message */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SearchQueryException.java
* * @param message The detail message explaining the exception * @param cause The cause of this exception */ public SearchQueryException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SearchQueryException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
return null; } /** * Generates a Type 3 NTLM message. * @param username The username. * @param password The password. * @param domain The domain. * @param workstation The workstation. * @param challenge The Type 2 challenge message. * @return The Type 3 message. * @throws NTLMEngineException if an NTLM engine error occurs. */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
* * @param message the detail message explaining the exception * @param e the cause of the exception */ public JobProcessingException(final String message, final Throwable e) { super(message, e); } /** * Constructs a new JobProcessingException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbExceptionTest.java
} @Test @DisplayName("Should create SmbException with message") void testSmbExceptionWithMessage() { // Given String message = "Custom error message"; // When SmbException exception = new SmbException(message); // Then assertNotNull(exception); assertEquals(message, exception.getMessage()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0)