Home
last modified time | relevance | path

Searched refs:WebSocketException (Results 1 – 2 of 2) sorted by relevance

/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
DNanoWSD.java194 …throw new WebSocketException(CloseCode.ProtocolError, "Previous continuous frame sequence not comp… in handleFrameFragment()
202 …throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started."… in handleFrameFragment()
209 …throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started."… in handleFrameFragment()
227 … throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence not completed."); in handleWebsocketFrame()
231 …throw new WebSocketException(CloseCode.ProtocolError, "Non control or continuous frame expected."); in handleWebsocketFrame()
254 if (e instanceof WebSocketException) { in readWebsocket()
255 … doClose(((WebSocketException) e).getCode(), ((WebSocketException) e).getReason(), false); in readWebsocket()
276 public static class WebSocketException extends IOException { class in NanoWSD
284 public WebSocketException(CloseCode code, String reason) { in WebSocketException() method in NanoWSD.WebSocketException
288 public WebSocketException(CloseCode code, String reason, Exception cause) { in WebSocketException() method in NanoWSD.WebSocketException
[all …]
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketChannelClient.java21 import de.tavendo.autobahn.WebSocketException;
103 } catch (WebSocketException e) { in connect()