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

org.hibernate.annotations.common.AssertionFailure Maven / Gradle / Ivy

The newest version!
//$Id: $
package org.hibernate.annotations.common;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Indicates failure of an assertion: a possible bug in Hibernate.
 *
 * @author Gavin King
 * @auhor Emmanuel Bernard
 */
//TODO Copy from Hibernate Core, do some mutualization here?
public class AssertionFailure extends RuntimeException {

	private static final Log log = LogFactory.getLog(AssertionFailure.class);

	private static final String MESSAGE = "an assertion failure occured (this may indicate a bug in Hibernate)";

	public AssertionFailure(String s) {
		super(s);
		log.error(MESSAGE, this);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy