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

pro.taskana.common.api.exceptions.AutocommitFailedException Maven / Gradle / Ivy

There is a newer version: 8.2.0
Show newest version
package pro.taskana.common.api.exceptions;

/**
 * This exception is thrown when using TASKANA with the AUTOCOMMIT ConnectionManagementMode and an
 * attempt to commit fails.
 */
public class AutocommitFailedException extends TaskanaRuntimeException {

  public static final String ERROR_KEY = "CONNECTION_AUTOCOMMIT_FAILED";

  public AutocommitFailedException(Throwable cause) {
    super("Autocommit failed", ErrorCode.of(ERROR_KEY), cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy