changed versionAdded now that #37767 is backedported

This commit is contained in:
Martijn van Groningen 2019-01-25 09:18:42 +01:00
parent 1151f3b3ff
commit 5a9dadb3ff
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A
1 changed files with 1 additions and 1 deletions

View File

@ -1012,7 +1012,7 @@ public class ElasticsearchException extends RuntimeException implements ToXConte
SNAPSHOT_IN_PROGRESS_EXCEPTION(org.elasticsearch.snapshots.SnapshotInProgressException.class,
org.elasticsearch.snapshots.SnapshotInProgressException::new, 151, Version.V_7_0_0),
NO_SUCH_REMOTE_CLUSTER_EXCEPTION(org.elasticsearch.transport.NoSuchRemoteClusterException.class,
org.elasticsearch.transport.NoSuchRemoteClusterException::new, 152, Version.V_7_0_0);
org.elasticsearch.transport.NoSuchRemoteClusterException::new, 152, Version.V_6_7_0);
final Class<? extends ElasticsearchException> exceptionClass;
final CheckedFunction<StreamInput, ? extends ElasticsearchException, IOException> constructor;