HttpConnectionClosedException.java 683 Bytes
Newer Older
Alex Wenckus's avatar
Alex Wenckus committed
1 2 3 4 5
/**
 * $RCSfile$
 * $Revision: $
 * $Date: $
 *
6
 * Copyright (C) 2005-2008 Jive Software. All rights reserved.
Alex Wenckus's avatar
Alex Wenckus committed
7 8
 *
 * This software is published under the terms of the GNU Public License (GPL),
9 10
 * a copy of which is included in this distribution, or a commercial license
 * agreement with Jive.
Alex Wenckus's avatar
Alex Wenckus committed
11
 */
Matt Tucker's avatar
Matt Tucker committed
12

13
package org.jivesoftware.openfire.http;
Alex Wenckus's avatar
Alex Wenckus committed
14 15 16 17 18 19 20 21 22 23 24 25

/**
 * 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);
    }
}