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

org.hibernate.cache.NoCachingEnabledException Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
// $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 - 2024 Weber Informatics LLC | Privacy Policy