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

io.permazen.core.StaleTransactionException Maven / Gradle / Ivy


/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package io.permazen.core;

/**
 * Thrown when a transaction that has been committed, rolled back, or otherwise invalidated is accessed.
 */
@SuppressWarnings("serial")
public class StaleTransactionException extends TransactionException {

    static final String DEFAULT_MESSAGE = "transaction cannot be accessed because it is no longer usable";

    /**
     * Constructor.
     *
     * @param tx the stale transaction
     * @throws IllegalArgumentException if {@code tx} is null
     */
    public StaleTransactionException(Transaction tx) {
        super(tx, DEFAULT_MESSAGE);
    }

    /**
     * Constructor.
     *
     * @param tx the stale transaction
     * @param message exception message
     * @throws IllegalArgumentException if {@code tx} is null
     */
    public StaleTransactionException(Transaction tx, String message) {
        super(tx, message);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy