Skip to content

Commit

Permalink
add space to Exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Hässig committed Dec 13, 2023
1 parent c78be69 commit 24dec40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void execute() {
final String nodeName = nodeNameHelper.getUniqueName(
parent,
getForm().getPropertyValue(definition.getNodeNameProperty()).map(String::valueOf).orElseThrow(() ->
new ActionExecutionException("Failed to get node name property " + definition.getNodeNameProperty() + "from form")
new ActionExecutionException("Failed to get node name property " + definition.getNodeNameProperty() + " from form")
)
);

Expand Down

0 comments on commit 24dec40

Please sign in to comment.