- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 1,436 for message_0 (0.06 sec)
-
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulationException.java
public MavenExecutionRequestPopulationException(String message) { super(message); } public MavenExecutionRequestPopulationException(Throwable cause) { super(cause); } public MavenExecutionRequestPopulationException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
/** * Color style for transfer messages. * @since 4.0.0 */ @Config(defaultValue = MAVEN_STYLE_TRANSFER_DEFAULT) public static final String MAVEN_STYLE_TRANSFER = MAVEN_STYLE_PREFIX + MAVEN_STYLE_TRANSFER_NAME; /** * Color style for trace messages. * @since 4.0.0 */ @Config(defaultValue = MAVEN_STYLE_TRACE_DEFAULT)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:24:08 UTC 2024 - 14K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserException.java
* Constructs a new ParserException with the specified detail message. * * @param message the detail message explaining the cause of the exception */ public ParserException(String message) { super(message); } /** * Constructs a new ParserException with the specified detail message and cause. * * @param message the detail message explaining the cause of the exception
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/InvalidQueryException.java
public InvalidQueryException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) { super(message, cause); this.messageCode = messageCode; } public InvalidQueryException(final VaMessenger<FessMessages> messageCode, final String message) { super(message); this.messageCode = messageCode; } /** * @return the messageCode */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) { super(message, cause); this.messageCode = messageCode; } public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message) { super(message); this.messageCode = messageCode; } /** * @return the messageCode */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
public WagonConfigurationException(String repositoryId, String message, Throwable cause) { super(repositoryId, message, cause); } public WagonConfigurationException(String repositoryId, String message) { super(repositoryId, message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/LocalRepositoryNotAccessibleException.java
@Deprecated public class LocalRepositoryNotAccessibleException extends IOException { public LocalRepositoryNotAccessibleException(String message, Throwable cause) { super(message); initCause(cause); } public LocalRepositoryNotAccessibleException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlock.java
*/ package jcifs.internal; import jcifs.util.transport.Message; /** * @author mbechler * */ public interface CommonServerMessageBlock extends Message { /** * Decode message data from the given byte array * * @param buffer * @param bufferIndex * @return message length * @throws SMBProtocolDecodingException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
internal/s3select/simdj/errors.go
package simdj import "fmt" type s3Error struct { code string message string statusCode int cause error } func (err *s3Error) Cause() error { return err.cause } func (err *s3Error) ErrorCode() string { return err.code } func (err *s3Error) ErrorMessage() string { return err.message } func (err *s3Error) HTTPStatusCode() int { return err.statusCode }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.4K bytes - Viewed (0)