From c5b5d3c9c383637eefbe3c4ac90bd8f9d8990568 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 31 Jul 2015 11:06:01 +0200 Subject: [PATCH] SetupException: Provide a default exception message --- modules/setup/library/Setup/Exception/SetupException.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/setup/library/Setup/Exception/SetupException.php b/modules/setup/library/Setup/Exception/SetupException.php index b8c860f39..49d0a6f9c 100644 --- a/modules/setup/library/Setup/Exception/SetupException.php +++ b/modules/setup/library/Setup/Exception/SetupException.php @@ -12,4 +12,11 @@ use Icinga\Exception\IcingaException; */ class SetupException extends IcingaException { + /** + * {@inheritdoc} + */ + public function __construct() + { + parent::__construct('Setup abortion'); + } }