/** * Copyright (C) 2013 Alexander Szczuczko * * This file may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ package ca.szc.keratin.core.event.connection; import java.net.Socket; import ca.szc.keratin.core.event.IrcConnectionEvent; import ca.szc.keratin.core.net.io.OutputQueue; /** * Socket has disconnected */ public class IrcDisconnect extends IrcConnectionEvent { public IrcDisconnect( OutputQueue replyQueue, Socket socket ) { super( replyQueue, socket ); } }