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

org.hibernate.cfg.JDBCBinderException Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
/*
 * Created on 2004-11-23
 *
 */
package org.hibernate.cfg;

import java.io.ObjectStreamClass;

import org.hibernate.HibernateException;

/**
 * @author max
 *
 */
public class JDBCBinderException extends HibernateException {

	private static final long serialVersionUID = 
			ObjectStreamClass.lookup(JDBCBinderException.class).getSerialVersionUID();
	
	/**
	 * @param string
	 * @param root
	 */
	public JDBCBinderException(String string, Throwable root) {
		super(string, root);
	}
	/**
	 * @param root
	 */
	public JDBCBinderException(Throwable root) {
		super(root);
	}
	/**
	 * @param s
	 */
	public JDBCBinderException(String s) {
		super(s);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy