FileDocCategorySizeDatePackage
MappingException.javaAPI DocHibernate 3.2.5529Thu Jun 03 11:31:32 BST 2004org.hibernate

MappingException.java

//$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);
	}

}