org.hibernate.cache.CacheException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$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);
}
}