de.akquinet.jbosscc.guttenbase.exceptions.IncompatibleTablesException Maven / Gradle / Ivy
package de.akquinet.jbosscc.guttenbase.exceptions;
import java.sql.SQLException;
/**
* Thrown when tables do not match.
*
*
* © 2012-2020 akquinet tech@spree
*
*
* @author M. Dahm
*/
@SuppressWarnings("deprecation")
public class IncompatibleTablesException extends SQLException {
private static final long serialVersionUID = 1L;
public IncompatibleTablesException(final String reason) {
super(reason);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy