- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,146 for mymessage (0.04 sec)
-
src/main/java/org/codelibs/fess/exception/CommandExecutionException.java
/** * Constructor with error message. * @param message The error message describing the command execution failure. */ public CommandExecutionException(final String message) { super(message); } /** * Constructor with error message and cause. * @param message The error message describing the command execution failure.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ThemeException.java
* * @param message the exception message * @param cause the underlying cause of this exception */ public ThemeException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new ThemeException with the specified message. * * @param message the exception message */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java
* * @param message the exception message * @param cause the underlying cause of this exception */ public ThumbnailGenerationException(final String message, final Exception cause) { super(message, cause); } /** * Constructs a new ThumbnailGenerationException with the specified 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) -
src/main/java/jcifs/RuntimeCIFSException.java
/** * Constructs a runtime CIFS exception with no detail message. */ public RuntimeCIFSException() { } /** * Constructs a runtime CIFS exception with the specified detail message and cause. * * @param message the detail message * @param cause the cause of this exception */ public RuntimeCIFSException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java
/** * Constructs a new SearchEngineClientException with the specified message and cause. * * @param message the detail message explaining the exception * @param cause the underlying cause of the exception */ public SearchEngineClientException(final String message, final Throwable cause) { super(message, cause); } /**
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/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
// Test with URL, message, and exception (abort defaults to false) String url = "http://example.com/test"; String message = "Test error message"; Exception cause = new RuntimeException("Root cause"); DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause); assertEquals(url, exception.getUrl());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/CIFSUnsupportedCryptoException.java
*/ public CIFSUnsupportedCryptoException() { } /** * Constructs a CIFS unsupported crypto exception with the specified detail message and cause. * * @param message the detail message * @param cause the cause of this exception */ public CIFSUnsupportedCryptoException(final String message, final Throwable cause) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SMBProtocolDowngradeException.java
* Creates a new SMBProtocolDowngradeException with no message. */ public SMBProtocolDowngradeException() { } /** * Creates a new SMBProtocolDowngradeException with the specified detail message and cause. * * @param message the detail message * @param cause the cause of the exception */ public SMBProtocolDowngradeException(final String message, final Throwable cause) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java
void testMessageConstructorWithCryptoMessages(String message) { // Given & When CIFSUnsupportedCryptoException exception = new CIFSUnsupportedCryptoException(message); // Then assertEquals(message, exception.getMessage(), "Crypto message should be preserved exactly"); assertNull(exception.getCause(), "Cause should be null"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java
* {@return true if the <b>debug</b> error level is enabled} */ boolean isDebugEnabled(); /** * Sends a message to the user in the <b>debug</b> error level. * * @param content the message to log */ void debug(CharSequence content); /** * Sends a message (and accompanying exception) to the user in the <b>debug</b> error level.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 5.4K bytes - Viewed (0)