io.github.amayaframework.di.ArtifactNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amaya-di Show documentation
Show all versions of amaya-di Show documentation
A framework responsible for monitoring and automating the dependency injection process.
package io.github.amayaframework.di;
/**
* Thrown to indicate that the dependency specialized by the specified artifact was not found.
*/
public class ArtifactNotFoundException extends ArtifactException {
/**
* Constructs an {@link ArtifactNotFoundException} with the missing artifact.
*
* @param artifact the missing artifact
*/
public ArtifactNotFoundException(Artifact artifact) {
super("The artifact was not found", artifact);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy