mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-24 08:00:00 -06:00
OpConfigErrors can now be thrown without a source
This commit is contained in:
parent
6d1bfd10b6
commit
d5436ddffc
@ -27,7 +27,10 @@ public class OpConfigError extends ActivityInitError {
|
||||
private final String configSource;
|
||||
|
||||
public OpConfigError(String error) {
|
||||
this(error,null);
|
||||
this(error,null,null);
|
||||
}
|
||||
public OpConfigError(String error, Throwable cause) {
|
||||
this(error, null, cause);
|
||||
}
|
||||
|
||||
public OpConfigError(String error, String configSource) {
|
||||
|
Loading…
Reference in New Issue
Block a user