com.flagwind.commands.CommandException Maven / Gradle / Ivy
package com.flagwind.commands;
/**
* 命令异常
* @author chendb
*/
public class CommandException extends RuntimeException {
private static final long serialVersionUID = -2102256152049762975L;
/**
* @param message 异常消息
*/
public CommandException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy