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

com.yannbriancon.exception.NPlusOneQueryException Maven / Gradle / Ivy

Go to download

Library giving tools to detect N+1 queries and count the queries generated with Spring and Hibernate

There is a newer version: 2.0.0
Show newest version
package com.yannbriancon.exception;

import org.hibernate.CallbackException;

/**
 * Exception triggered when detecting a N+1 query
 */
public class NPlusOneQueryException extends CallbackException {
    public NPlusOneQueryException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy