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

com.github.zhangxd1989.basetool.exceptions.DependencyException Maven / Gradle / Ivy

package com.github.zhangxd1989.basetool.exceptions;


import com.github.zhangxd1989.basetool.util.StrUtil;

/**
 * 依赖异常
 *
 * @author sheldon
 */
public class DependencyException extends RuntimeException {

    private static final long serialVersionUID = -4403935062729799900L;

    public DependencyException(Throwable e) {
        super(ExceptionUtil.getMessage(e), e);
    }

    public DependencyException(String message) {
        super(message);
    }

    public DependencyException(String messageTemplate, Object... params) {
        super(StrUtil.format(messageTemplate, params));
    }

    public DependencyException(String message, Throwable throwable) {
        super(message, throwable);
    }

    public DependencyException(Throwable throwable, String messageTemplate, Object... params) {
        super(StrUtil.format(messageTemplate, params), throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy