001package org.xbib.elasticsearch.http.netty.client;
002
003import java.io.IOException;
004
005/**
006 * A WebSocket related exception
007 */
008public class NettyWebSocketException extends IOException {
009
010 public NettyWebSocketException(String s) {
011 super(s);
012 }
013}