All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.plugins.maven.operator.MissingDependencyException Maven / Gradle / Ivy

There is a newer version: 0.97.4
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy