Newer
Older
Openfire-connectionmanager / src / java / org / jivesoftware / multiplexer / net / http / HttpConnectionClosedException.java
@Daniel Henninger Daniel Henninger on 25 Apr 2008 690 bytes Ported Gato's JM-1338 changes from trunk.
/**
 * $RCSfile$
 * $Revision: $
 * $Date: $
 *
 * Copyright (C) 2005-2008 Jive Software. All rights reserved.
 *
 * This software is published under the terms of the GNU Public License (GPL),
 * a copy of which is included in this distribution, or a commercial license
 * agreement with Jive.
 */

package org.jivesoftware.multiplexer.net.http;

/**
 * This exception is thrown when an action attempted on the connection to the client but the
 * connection has been closed.
 *
 * @author Alexander Wenckus
 */
public class HttpConnectionClosedException extends Exception {
    public HttpConnectionClosedException(String message) {
        super(message);
    }
}