Fix exception on task not found

Silly protected method....
This commit is contained in:
Nik Everett 2016-06-15 15:29:42 -04:00
parent 8cc848f31c
commit ab2a4a0d72
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class ResourceNotFoundException extends ElasticsearchException {
super(msg, args);
}
protected ResourceNotFoundException(String msg, Throwable cause, Object... args) {
public ResourceNotFoundException(String msg, Throwable cause, Object... args) {
super(msg, cause, args);
}