Skip to content

Commit

Permalink
Remove ElasticsearchIllegalArgumentException and `ElasticsearchIlle…
Browse files Browse the repository at this point in the history
…galStateException` in favor of the JDK one

Related to #10794

Closes #82.
  • Loading branch information
dadoonet committed Apr 29, 2015
1 parent 9c7cc9c commit a34a443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit a34a443

Please sign in to comment.