com.github.zeger_tak.enversvalidationplugin.exceptions.SetupValidationForSpecificAuditTableInformationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of envers-validation-maven-plugin Show documentation
Show all versions of envers-validation-maven-plugin Show documentation
This is a Maven plugin that allows for easy validation of database auditing with Hibernate
and is intended to be used by projects that do not always rely on Envers to create the audit history.
package com.github.zeger_tak.enversvalidationplugin.exceptions;
import javax.annotation.Nonnull;
import com.github.zeger_tak.enversvalidationplugin.entities.AuditTableInformation;
public class SetupValidationForSpecificAuditTableInformationException extends ValidationException
{
private final AuditTableInformation auditTableInformation;
public SetupValidationForSpecificAuditTableInformationException(@Nonnull String message, @Nonnull AuditTableInformation auditTableInformation)
{
super(message);
this.auditTableInformation = auditTableInformation;
}
@Nonnull
public AuditTableInformation getAuditTableInformation()
{
return auditTableInformation;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy