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

de.akquinet.jbosscc.guttenbase.exceptions.IncompatibleColumnsException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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