org.hibernate.cache.NoCachingEnabledException Maven / Gradle / Ivy
// $Id: NoCachingEnabledException.java 6433 2005-04-15 18:20:03Z steveebersole $
package org.hibernate.cache;
import org.hibernate.cfg.Environment;
/**
* Implementation of NoCachingEnabledException.
*
* @author Steve Ebersole
*/
public class NoCachingEnabledException extends CacheException {
private static final String MSG =
"Second-level cache is not enabled for usage [" +
Environment.USE_SECOND_LEVEL_CACHE +
" | " + Environment.USE_QUERY_CACHE + "]";
public NoCachingEnabledException() {
super( MSG );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy