io.codemodder.plugins.maven.operator.MissingDependencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-maven Show documentation
Show all versions of codemodder-plugin-maven Show documentation
Plugin for providing Maven dependency management functions to codemods.
package io.codemodder.plugins.maven.operator;
/**
* An exception class representing the scenario where a required dependency is missing. This
* exception is typically thrown when an operation or process relies on a certain dependency that is
* not available or cannot be resolved.
*/
class MissingDependencyException extends RuntimeException {
/**
* Constructs a new `MissingDependencyException` with the specified error message.
*
* @param message A descriptive error message that provides information about the missing
* dependency.
*/
public MissingDependencyException(String message) {
super(message);
}
}