- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 1,294 for Message1 (0.04 sec)
-
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/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) -
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) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolationException.java
public ModelInterpolationException(String message) { super(message); } public ModelInterpolationException(String message, Throwable cause) { super(message, cause); } public ModelInterpolationException(String expression, String message, Throwable cause) { super("The POM expression: " + expression + " could not be evaluated. Reason: " + message, cause); this.expression = expression;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt
message.startsWith("System property ") -> Type.Setup message.startsWith("Reload ") -> Type.Setup message == "No session to resume." -> Type.Handshake message.startsWith("Consuming ") -> Type.Handshake message.startsWith("Produced ") -> Type.Handshake message.startsWith("Negotiated ") -> Type.Handshake
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScriptEngineException.java
/** * Constructor. * @param message The exception message. */ public ScriptEngineException(final String message) { super(message); } /** * Constructor. * @param message The exception message. * @param cause The cause of the exception. */ public ScriptEngineException(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.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
String message = error.getMessage(); if (message != null) { message = message.toLowerCase(); // Connection reset, network unreachable, etc. might be temporary return message.contains("connection reset") || message.contains("network unreachable") || message.contains("host unreachable") || message.contains("timeout"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0)