FileDocCategorySizeDatePackage
AssertionFailure.javaAPI DocHibernate 3.2.5828Thu Jun 03 11:31:32 BST 2004org.hibernate

AssertionFailure

public class AssertionFailure extends org.hibernate.exception.NestableRuntimeException
Indicates failure of an assertion: a possible bug in Hibernate.
author
Gavin King

Fields Summary
private static final Log
log
private static final String
MESSAGE
Constructors Summary
public AssertionFailure(String s)


	   
		super(s);
		log.error(MESSAGE, this);
	
public AssertionFailure(String s, Throwable t)

		super(s, t);
		log.error(MESSAGE, t);
	
Methods Summary