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

org.hibernate.MappingException Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: MappingException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate;

/**
 * An exception that usually occurs at configuration time, rather
 * than runtime, as a result of something screwy in the O-R mappings.
 *
 * @author Gavin King
 */

public class MappingException extends HibernateException {

	public MappingException(String msg, Throwable root) {
		super( msg, root );
	}

	public MappingException(Throwable root) {
		super(root);
	}

	public MappingException(String s) {
		super(s);
	}

}










© 2015 - 2024 Weber Informatics LLC | Privacy Policy