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

com.jpattern.orm.exception.sql.OrmSqlBadGrammarException Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.exception.sql;

/**
 * Exception thrown when SQL specified is invalid.
 * 
 * @author cinafr
 *
 */
public class OrmSqlBadGrammarException extends OrmSqlException {

	private static final long serialVersionUID = 1L;

	public OrmSqlBadGrammarException(final Exception e) {
		super(e);
	}

	public OrmSqlBadGrammarException(final String message, final Exception e) {
		super(message, e);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy