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

MappingException

public class MappingException extends HibernateException
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

Fields Summary
Constructors Summary
public MappingException(String msg, Throwable root)

		super( msg, root );
	
public MappingException(Throwable root)

		super(root);
	
public MappingException(String s)

		super(s);
	
Methods Summary