Minor grammar/language change in the errors for filtering library (#7779)
This commit is contained in:
parent
fd45bb44e9
commit
a2e68c9724
|
|
@ -223,7 +223,7 @@ public class FilterDataService {
|
||||||
valueBuilder.append(finalValues);
|
valueBuilder.append(finalValues);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new AppsmithPluginException(AppsmithPluginError.PLUGIN_EXECUTE_ARGUMENT_ERROR,
|
throw new AppsmithPluginException(AppsmithPluginError.PLUGIN_EXECUTE_ARGUMENT_ERROR,
|
||||||
value + " could not parsed into an array");
|
value + " could not be parsed into an array");
|
||||||
}
|
}
|
||||||
|
|
||||||
valueBuilder.append(")");
|
valueBuilder.append(")");
|
||||||
|
|
@ -563,8 +563,8 @@ public class FilterDataService {
|
||||||
.map(condition -> {
|
.map(condition -> {
|
||||||
if (!Condition.isValid(condition)) {
|
if (!Condition.isValid(condition)) {
|
||||||
throw new AppsmithPluginException(AppsmithPluginError.PLUGIN_EXECUTE_ARGUMENT_ERROR,
|
throw new AppsmithPluginException(AppsmithPluginError.PLUGIN_EXECUTE_ARGUMENT_ERROR,
|
||||||
"Condition for filtering was incomplete or incorrect : " + condition.getPath() +
|
"Condition \" " + condition.getPath() + " " + condition.getOperator().toString() + " "
|
||||||
condition.getOperator().toString() + condition.getValue());
|
+ condition.getValue() + " \" is incorrect and could not be parsed.");
|
||||||
}
|
}
|
||||||
|
|
||||||
String path = condition.getPath();
|
String path = condition.getPath();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user