com.hn.dingtalk.exception.DingTalkException Maven / Gradle / Ivy
package com.hn.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