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