*
* @throws ServerException if there is a problem with sending the message.
*/
protected void quit() throws ServerException {
logger.info("Sending the 'quit' message to clients");
Message msg = new MessageQuit();
logger.debug("Sending the 'quit' message to detectives");
detectiveClient.sendMessage(msg);
logger.debug("Sending the 'quit' message to phantoms");
phantomClient.sendMessage(msg);
logger.debug("The message was sent");