01: /* Copyright (c) 2001 - 2008 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.geoserver.ows;
06:
07: import java.io.IOException;
08:
09: /**
10: * An IOException that means a
11: * {@link ServiceStrategy#getDestination(javax.servlet.http.HttpServletResponse) ServiceStrategy's destination}
12: * IO operation has been abruptly interrupted while writing a response.
13: * <p>
14: * This exception serves as an indicator to the dispatching system that there's
15: * no need to report the exception back to the client.
16: * </p>
17: *
18: * @author Gabriel Roldan (TOPP)
19: * @version $Id: ClientStreamAbortedException.java 8179 2008-01-16 16:56:48Z groldan $
20: * @since 1.6.x
21: */
22: public final class ClientStreamAbortedException extends IOException {
23:
24: private static final long serialVersionUID = -812677957232110980L;
25:
26: public ClientStreamAbortedException() {
27: super ();
28: }
29:
30: public ClientStreamAbortedException(String message) {
31: super (message);
32: }
33:
34: public ClientStreamAbortedException(String message, Throwable cause) {
35: super (message);
36: initCause(cause);
37: }
38:
39: public ClientStreamAbortedException(Throwable cause) {
40: super();
41: initCause(cause);
42: }
43: }
|