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

com.hn.utils.dingtalk.exception.DingTalkException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.utils.dingtalk.exception;

/**
 * 描述:
 * 钉钉异常
 *
 * @author shilvfei
 *  2019-01-10 19:13
 */
public class DingTalkException extends RuntimeException {
    public DingTalkException() {
    }
    public DingTalkException(String message) {
        super(message);
    }

    public DingTalkException(String message, Throwable cause) {
        super(message, cause);
    }

    public static DingTalkException exception(String message){
        return new DingTalkException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy