2014-10-23 11:41:16 +02:00
|
|
|
<?php
|
2015-02-04 10:46:36 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 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-02-03 16:27:59 +01:00
|
|
|
}
|