- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,064 for mesiace (0.06 sec)
-
src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java
private static final long serialVersionUID = 1L; /** * Constructor. * @param message The exception message. */ public ResultOffsetExceededException(final String message) { super(message); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java
public ClIndexOutOfBoundsException() { super(); } /** * Creates a {@link ClIndexOutOfBoundsException}. * * @param message * Message */ public ClIndexOutOfBoundsException(final String message) { super(message); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.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) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/BatchRequestException.java
private final List<RequestResult<?, ?>> results; /** * Constructs a new BatchRequestException with the specified message and results. * * @param <REQ> The type of the request * @param <REP> The type of the response * @param message The error message describing the batch operation failure * @param allResults List of results from all attempted requests in the batch */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 2.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) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
// Produced ClientHello handshake message // Consuming ServerHello handshake message // Consuming server Certificate handshake message // Consuming server CertificateStatus handshake message // Found trusted certificate // Consuming ECDH ServerKeyExchange handshake message // Consuming ServerHelloDone handshake message
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K 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) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: {item} must be greater than {value}. */ public static final String CONSTRAINTS_DecimalMin_MESSAGE = "{constraints.DecimalMin.message}"; /** The key of the message: {item} must be a number. (expected: <number>.<number>) */ public static final String CONSTRAINTS_Digits_MESSAGE = "{constraints.Digits.message}"; /** The key of the message: {item} must be a future value. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferFailedException.java
*/ @Deprecated public class ArtifactTransferFailedException extends Exception { public ArtifactTransferFailedException(final String message) { super(message); } public ArtifactTransferFailedException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0)