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

com.github.ltsopensource.store.jdbc.exception.TableNotExistException Maven / Gradle / Ivy

package com.github.ltsopensource.store.jdbc.exception;

/**
 * @author Robert HG ([email protected]) on 3/8/16.
 */
public class TableNotExistException extends JdbcException {

    public TableNotExistException() {
        super();
    }

    public TableNotExistException(String message) {
        super(message);
    }

    public TableNotExistException(String message, Throwable cause) {
        super(message, cause);
    }

    public TableNotExistException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy