HttpBindTimeoutException.java 783 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 26 27 28 29

/**
 * An exception which indicates that the maximum waiting time for a client response has been
 * surpassed and an empty response should be returned to the requesting client.
 *
 * @author Alexander Wenckus
 */
class HttpBindTimeoutException extends Exception {
    public HttpBindTimeoutException(String message) {
        super(message);
    }

    public HttpBindTimeoutException() {
        super();
    }
}