2014-10-23 05:41:16 -04:00
|
|
|
<?php
|
2026-03-26 12:46:27 -04:00
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
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
|
|
|
}
|