- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for RepositoryMetadataInstallationException (0.22 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataInstallationException.java
/** * Error while installing repository metadata. * */ @Deprecated public class RepositoryMetadataInstallationException extends Throwable { public RepositoryMetadataInstallationException(String message) { super(message); } public RepositoryMetadataInstallationException(String message, Exception e) { super(message, e); }
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/artifact/repository/metadata/RepositoryMetadataManager.java
* * @param metadata the metadata * @param localRepository the local repository * @throws RepositoryMetadataInstallationException in case of metadata installation issue */ void install(ArtifactMetadata metadata, ArtifactRepository localRepository) throws RepositoryMetadataInstallationException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java
public void install(ArtifactMetadata metadata, ArtifactRepository localRepository) throws RepositoryMetadataInstallationException { try { metadata.storeInLocalRepository(localRepository, localRepository); } catch (RepositoryMetadataStoreException e) { throw new RepositoryMetadataInstallationException("Error installing metadata: " + e.getMessage(), e); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.9K bytes - Viewed (0)