Fix exception on task not found
Silly protected method....
This commit is contained in:
parent
8cc848f31c
commit
ab2a4a0d72
|
@ -32,7 +32,7 @@ public class ResourceNotFoundException extends ElasticsearchException {
|
||||||
super(msg, args);
|
super(msg, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ResourceNotFoundException(String msg, Throwable cause, Object... args) {
|
public ResourceNotFoundException(String msg, Throwable cause, Object... args) {
|
||||||
super(msg, cause, args);
|
super(msg, cause, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue