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

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

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

/** Thrown if an active transaction is required by a method and no transaction is active. */
@SuppressWarnings("WeakerAccess")
public final class NoTransactionActiveException extends RuntimeException {

  public NoTransactionActiveException() {
    super();
  }

  public NoTransactionActiveException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy