org.appfuse.dao.SearchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appfuse-hibernate Show documentation
Show all versions of appfuse-hibernate Show documentation
AppFuse DAO backend implemented with Hibernate (http://hibernate.org).
package org.appfuse.dao;
/**
*
* @author jgarcia
*/
public class SearchException extends RuntimeException {
public SearchException(Throwable ex) {
super(ex);
}
}