/*
* Created by Andrey Cherkashin (acherkashin)
* http://acherkashin.me
*
* License
* Copyright (c) 2015 Andrey Cherkashin
* The project released under the MIT license: http://opensource.org/licenses/MIT
*/
package ragefist.packets.console;
import ragefist.packets.IncomingConsolePacket;
import ragefist.packets.IncomingPacketException;
/**
*
* @author acherkashin
*/
public class Exit extends IncomingConsolePacket
{
@Override
public void run() throws IncomingPacketException {
this.getConnection().close();
}
}