org.hibernate.envers.boot.EnversMappingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-envers Show documentation
Show all versions of hibernate-envers Show documentation
Hibernate's entity version (audit/history) support
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.envers.boot;
import org.hibernate.boot.MappingException;
import org.hibernate.boot.jaxb.Origin;
import org.hibernate.boot.jaxb.SourceType;
/**
* Indicates an error happened during the Envers mapping boot process.
*
* @author Chris Cranford
*/
public class EnversMappingException extends MappingException {
public EnversMappingException(String message) {
super( message, new Origin( SourceType.OTHER, "envers" ) );
}
public EnversMappingException(String message, Throwable t) {
super( message, t, new Origin( SourceType.OTHER, "envers" ) );
}
public EnversMappingException(Throwable t) {
this( "", t );
}
}