package fr.univ.lyon1.common.exception;

/**
 * Exception when a command is not known by the client or server
 */
public class UnknownCommand extends ChatException {
    public UnknownCommand() {
        super("Command unknown");
    }

    public UnknownCommand(String commandName) {
        super("Command " + commandName + " unknown");
    }
}