ImportRowModifierForm: fix exception message

This commit is contained in:
Thomas Gelf 2022-04-26 12:58:42 +02:00
parent 9e8142b79a
commit 0f6fc7bfd0

View File

@ -163,10 +163,10 @@ class ImportRowModifierForm extends DirectorObjectForm
if ($class !== null) {
if (! class_exists($class)) {
throw new RuntimeException(
throw new RuntimeException(sprintf(
'The hooked class "%s" for this property modifier does no longer exist',
$class
);
));
}
$class::addSettingsFormFields($this);