com.hn.robot.exception.ChatRobotException Maven / Gradle / Ivy
package com.hn.robot.exception;
/**
* 描述:
* 推送机器人异常
*
* @author shilvfei
* 2019-01-10 19:13
*/
public class ChatRobotException extends RuntimeException {
public ChatRobotException() {
}
public ChatRobotException(String message) {
super(message);
}
public ChatRobotException(String message, Throwable cause) {
super(message, cause);
}
public static ChatRobotException exception(String message){
return new ChatRobotException(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy