de.akquinet.jbosscc.guttenbase.exceptions.TableConfigurationException Maven / Gradle / Ivy
package de.akquinet.jbosscc.guttenbase.exceptions;
import java.sql.SQLException;
import de.akquinet.jbosscc.guttenbase.repository.RepositoryTableFilter;
/**
* Thrown when data bases have not the same tables. You can omit tables deliberately using the {@link RepositoryTableFilter} hint.
*
*
* © 2012-2020 akquinet tech@spree
*
*
* @author M. Dahm
*/
public class TableConfigurationException extends SQLException {
private static final long serialVersionUID = 1L;
public TableConfigurationException(final String reason) {
super(reason);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy