- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 1,374 for messages (0.04 sec)
-
src/main/java/org/codelibs/fess/exception/PluginException.java
/** * Creates a plugin exception with message and cause. * * @param message the error message * @param cause the cause */ public PluginException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a plugin exception with 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.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/SitemapsException.java
super(message, cause); } /** * Constructs a new SitemapsException with the specified detail message. * @param message the detail message */ public SitemapsException(final String message) { super(message); } /** * Constructs a new SitemapsException with the specified cause. * @param cause the cause of the exception */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.7K bytes - Viewed (0) -
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/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/main/java/jcifs/ntlmssp/Type2Message.java
} /** * Creates a Type-2 message using default values from the current * environment. * * @param tc * context to use */ public Type2Message(final CIFSContext tc) { this(tc, getDefaultFlags(tc), null, null); } /** * Creates a Type-2 message in response to the given Type-1 message * using default values from the current environment.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MimeTypeException.java
*/ public MimeTypeException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new MimeTypeException with the specified detail message. * * @param message the detail message explaining the reason for the exception */ public MimeTypeException(final String message) { super(message); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0)