/**
  * Sends a message over the network to notify the other clients that a client has tried to logon
  * using the nick name of the application user.
  *
  * @param nick The nick that is already in use by the application user.
  */
 public void sendNickCrashMessage(final String nick) {
   messages.sendNickCrashMessage(nick);
 }