public ElasticsearchException(StreamInput in) throws IOException {
   super(in.readOptionalString(), in.readException());
   readStackTrace(this, in);
   headers.putAll(in.readMapOfLists(StreamInput::readString, StreamInput::readString));
 }