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

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

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

import java.time.Duration;

/**
 * Thrown when we attempt to schedule an invocation with a unique client id which has already been
 * used within {@link TransactionOutbox.TransactionOutboxBuilder#retentionThreshold(Duration)}.
 */
public class AlreadyScheduledException extends RuntimeException {
  AlreadyScheduledException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy