mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-06 10:59:12 +00:00
Remove ElasticsearchIllegalArgumentException
and ElasticsearchIllegalStateException
in favor of the JDK one
Related to https://github.com/elastic/elasticsearch/issues/10794 Closes #82.
This commit is contained in:
parent
9c7cc9ce28
commit
a34a443782
@ -19,13 +19,7 @@
|
||||
|
||||
package org.elasticsearch.cloud.azure;
|
||||
|
||||
import org.elasticsearch.ElasticsearchIllegalStateException;
|
||||
|
||||
public class AzureServiceDisableException extends ElasticsearchIllegalStateException {
|
||||
public AzureServiceDisableException() {
|
||||
super(null);
|
||||
}
|
||||
|
||||
public class AzureServiceDisableException extends IllegalStateException {
|
||||
public AzureServiceDisableException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
@ -19,13 +19,7 @@
|
||||
|
||||
package org.elasticsearch.cloud.azure;
|
||||
|
||||
import org.elasticsearch.ElasticsearchIllegalStateException;
|
||||
|
||||
public class AzureServiceRemoteException extends ElasticsearchIllegalStateException {
|
||||
public AzureServiceRemoteException() {
|
||||
super(null);
|
||||
}
|
||||
|
||||
public class AzureServiceRemoteException extends IllegalStateException {
|
||||
public AzureServiceRemoteException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user