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

com.gruelbox.transactionoutbox.MissingOptionalDependencyException Maven / Gradle / Ivy

There is a newer version: 6.0.553
Show newest version
package com.gruelbox.transactionoutbox;

public class MissingOptionalDependencyException extends RuntimeException {

  public MissingOptionalDependencyException(String groupId, String artifactId) {
    super(
        String.format(
            "You are trying to use an optional feature, which requires an additional dependency (%s:%s). Please add it to your classpath, and try again.",
            groupId, artifactId));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy