Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Java_TP/src/fr/univ/lyon1/common/exception/UnknownCommand.java

14 lines
347 B
Java

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");
}
}