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

io.github.rocketk.jorm.err.WhereClauseAbsentException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.0.5
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy