Fix dashlet creation

This commit is contained in:
Eric Espie
2026-01-19 16:59:36 +01:00
parent 0b6cbc1fef
commit 6aa8ac7ff1
16 changed files with 47 additions and 49 deletions

View File

@@ -45,11 +45,9 @@ class FormBlock extends AbstractTypeFormBlock
try {
// Build the form
$this->BuildForm();
}
catch (FormsException $e) {
} catch (FormsException $e) {
throw $e;
}
catch (Exception $e) {
} catch (Exception $e) {
throw new FormBlockException('Unable to construct form', 0, $e);
}
}