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

io.quarkus.hibernate.orm.deployment.ResteasyReactiveServerIntegrationProcessor Maven / Gradle / Ivy

package io.quarkus.hibernate.orm.deployment;

import javax.persistence.PersistenceException;

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.resteasy.reactive.server.spi.UnwrappedExceptionBuildItem;

public class ResteasyReactiveServerIntegrationProcessor {

    @BuildStep
    public UnwrappedExceptionBuildItem unwrappedExceptions() {
        return new UnwrappedExceptionBuildItem(PersistenceException.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy