1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.handler.codec.http.websocketx;
17
18 import io.netty.handler.codec.http.DefaultHttpResponse;
19 import io.netty.handler.codec.http.FullHttpResponse;
20 import io.netty.handler.codec.http.HttpResponse;
21 import io.netty.util.ReferenceCounted;
22
23
24
25
26
27
28
29 public final class WebSocketClientHandshakeException extends WebSocketHandshakeException {
30
31 private static final long serialVersionUID = 1L;
32
33 private final HttpResponse response;
34
35 public WebSocketClientHandshakeException(String message) {
36 this(message, null);
37 }
38
39 public WebSocketClientHandshakeException(String message, HttpResponse httpResponse) {
40 super(message);
41 if (httpResponse != null) {
42 response = new DefaultHttpResponse(httpResponse.protocolVersion(),
43 httpResponse.status(), httpResponse.headers());
44 } else {
45 response = null;
46 }
47 }
48
49
50
51
52 public HttpResponse response() {
53 return response;
54 }
55 }