
org.elasticsearch.transport.RemoteTransportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch - Open Source, Distributed, RESTful Search Engine
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.transport;
import org.elasticsearch.ElasticsearchWrapperException;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.transport.TransportAddress;
import java.io.IOException;
import java.net.InetSocketAddress;
/**
* A remote exception for an action. A wrapper exception around the actual remote cause and does not fill the
* stack trace.
*/
public class RemoteTransportException extends ActionTransportException implements ElasticsearchWrapperException {
public RemoteTransportException(String msg, Throwable cause) {
super(msg, null, null, cause);
}
public RemoteTransportException(String name, TransportAddress address, String action, Throwable cause) {
super(name, address, action, cause);
}
public RemoteTransportException(String name, InetSocketAddress address, String action, Throwable cause) {
super(name, address, action, null, cause);
}
public RemoteTransportException(StreamInput in) throws IOException {
super(in);
}
@Override
public Throwable fillInStackTrace() {
// no need for stack trace here, we always have cause
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy