Skip to content

Commit ab33fa2

Browse files
Merge branch '5.0'
* 5.0: Use PHP 7.2 minimum in tests run with github actions Fix exception messages containing exception messages
2 parents 0be7d7d + fc88184 commit ab33fa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Definition/BaseNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ final public function finalize($value)
468468

469469
throw $e;
470470
} catch (\Exception $e) {
471-
throw new InvalidConfigurationException(sprintf('Invalid configuration for path "%s": '.$e->getMessage(), $this->getPath()), $e->getCode(), $e);
471+
throw new InvalidConfigurationException(sprintf('Invalid configuration for path "%s": ', $this->getPath()).$e->getMessage(), $e->getCode(), $e);
472472
}
473473
}
474474

0 commit comments

Comments
 (0)