io.quarkus.narayana.jta.runtime.interceptor.RunnableWithException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-narayana-jta Show documentation
Show all versions of quarkus-narayana-jta Show documentation
Offer JTA transaction support (included in Hibernate ORM)
package io.quarkus.narayana.jta.runtime.interceptor;
@FunctionalInterface
public interface RunnableWithException {
void run() throws Exception;
}