de.akquinet.jbosscc.guttenbase.exceptions.IncompatibleColumnsException Maven / Gradle / Ivy
package de.akquinet.jbosscc.guttenbase.exceptions;
import java.sql.SQLException;
import de.akquinet.jbosscc.guttenbase.statements.InsertStatementFiller;
import de.akquinet.jbosscc.guttenbase.tools.CheckSchemaCompatibilityTool;
import de.akquinet.jbosscc.guttenbase.tools.CheckEqualTableDataTool;
/**
* Thrown when tables have mismatching columns.
*
*
* © 2012 akquinet tech@spree
*
*
* @see InsertStatementFiller
* @see CheckSchemaCompatibilityTool
* @see CheckEqualTableDataTool
*
* @author M. Dahm
*/
public class IncompatibleColumnsException extends SQLException {
private static final long serialVersionUID = 1L;
public IncompatibleColumnsException(final String reason) {
super(reason);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy