io.github.portaldalaran.talons.exception.TalonsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of talons Show documentation
Show all versions of talons Show documentation
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);
}
}