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

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