io.github.rocketk.jorm.err.WhereClauseAbsentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jorm Show documentation
Show all versions of jorm Show documentation
JORM is a lightweight JDBC-based ORM tool. Different from Mybatis and Hibernate, JORM encourages
developers to directly use SQL to operate data, JORM will handle the other boring works automatically.
package io.github.rocketk.jorm.err;
/**
* @author pengyu
*/
public class WhereClauseAbsentException extends JormMutationException {
public WhereClauseAbsentException() {
}
public WhereClauseAbsentException(String message) {
super(message);
}
public WhereClauseAbsentException(String message, Throwable cause) {
super(message, cause);
}
public WhereClauseAbsentException(Throwable cause) {
super(cause);
}
public WhereClauseAbsentException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}