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

io.github.portaldalaran.talons.exception.TalonsException Maven / Gradle / Ivy

Go to download

Expand the toolkit for query, save, and delete Mybatis plus entity associations 对于Mybatis plu的扩展工具,包括关联表查询,以及级联保存、更新、删除

The newest version!
package io.github.portaldalaran.talons.exception;

/**
 * @author david
 */
public class TalonsException extends RuntimeException {
    public TalonsException() {
        super();
    }

    public TalonsException(String s) {
        super(s);
    }

    public TalonsException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public TalonsException(Throwable throwable) {
        super(throwable);
    }

    protected TalonsException(String s, Throwable throwable, boolean b, boolean b1) {
        super(s, throwable, b, b1);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy