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

com.hn.robot.exception.ChatRobotException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
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