highfive.exceptions.InvalidHashFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highfive Show documentation
Show all versions of highfive Show documentation
HighFive reads the data in the tables of a database schema and hashes it all with the aim of comparing it to a destination
database, where this data has been migrated. It only succeeds if all data fields of all data rows
of all (or selected) tables in both schemas produce the exact same SHA-1 hash value. It currently
supports the Oracle, DB2 LUW, PostgreSQL, SQL Server, MySQL and MariaDB databases.
The newest version!
package highfive.exceptions;
public class InvalidHashFileException extends Exception {
private static final long serialVersionUID = 1L;
public InvalidHashFileException(String message) {
super(message);
}
}