com.yannbriancon.exception.NPlusOneQueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-hibernate-query-utils Show documentation
Show all versions of spring-hibernate-query-utils Show documentation
Library giving tools to detect N+1 queries and count the queries generated with Spring and
Hibernate
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