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

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

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: CacheException.java 11491 2007-05-09 01:56:57Z [email protected] $
package org.hibernate.cache;

import org.hibernate.HibernateException;

/**
 * Something went wrong in the cache
 */
public class CacheException extends HibernateException {
	
	public CacheException(String s) {
		super(s);
	}

	public CacheException(String s, Throwable e) {
		super(s, e);
	}

	public CacheException(Throwable e) {
		super(e);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy