2014-10-23 11:41:16 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
|
2014-10-23 11:41:16 +02:00
|
|
|
|
2014-11-10 16:31:40 +01:00
|
|
|
namespace Icinga\Module\Setup\Exception;
|
2014-10-23 11:41:16 +02:00
|
|
|
|
2014-11-12 17:49:05 +01:00
|
|
|
use Icinga\Exception\IcingaException;
|
|
|
|
|
2014-10-23 11:41:16 +02:00
|
|
|
/**
|
2014-11-10 10:30:52 +01:00
|
|
|
* Class SetupException
|
2014-10-23 11:41:16 +02:00
|
|
|
*
|
2014-11-10 10:30:52 +01:00
|
|
|
* Used to indicate that a setup should be aborted.
|
2014-10-23 11:41:16 +02:00
|
|
|
*/
|
2014-11-10 10:30:52 +01:00
|
|
|
class SetupException extends IcingaException
|
2014-10-23 11:41:16 +02:00
|
|
|
{
|
2015-07-31 11:06:01 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct('Setup abortion');
|
|
|
|
}
|
2015-02-03 16:27:59 +01:00
|
|
|
}
|