site.sorghum.anno.db.exception.AnnoDbException Maven / Gradle / Ivy
The newest version!
package site.sorghum.anno.db.exception;
/**
* Anno数据库异常
*
* @author sorghum
* @since 2023/07/08
*/
public class AnnoDbException extends RuntimeException {
public AnnoDbException(String message) {
super(message);
}
public AnnoDbException withCause(Throwable cause){
initCause(cause);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy