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

io.quarkus.narayana.jta.QuarkusTransactionException Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.narayana.jta;

/**
 * Runtime exception that is used to wrap any checked exceptions thrown from the {@link QuarkusTransaction} methods.
 */
public class QuarkusTransactionException extends RuntimeException {

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

    public QuarkusTransactionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    public QuarkusTransactionException(String message) {
        super(message);
    }

    public QuarkusTransactionException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy