2026-04-13 06:12:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Recovery Error Exception
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
*
|
2026-05-11 17:10:19 -05:00
|
|
|
* FILE INFORMATION
|
2026-05-31 12:14:34 -05:00
|
|
|
* DEFGROUP: MokoPlatform.Enterprise.Recovery
|
|
|
|
|
* INGROUP: MokoPlatform.Enterprise
|
2026-05-11 17:10:19 -05:00
|
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
|
|
|
|
|
* PATH: /lib/Enterprise/RecoveryError.php
|
|
|
|
|
* BRIEF: Recovery error exception class
|
|
|
|
|
*
|
2026-05-31 12:14:34 -05:00
|
|
|
* @package MokoPlatform\Enterprise
|
2026-04-13 06:12:04 +00:00
|
|
|
* @version 04.00.04
|
2026-05-31 12:14:34 -05:00
|
|
|
* @author moko-platform Team
|
2026-04-13 06:12:04 +00:00
|
|
|
* @license GPL-3.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace MokoEnterprise;
|
|
|
|
|
|
|
|
|
|
use RuntimeException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Exception raised when recovery operations fail.
|
|
|
|
|
*/
|
|
|
|
|
class RecoveryError extends RuntimeException
|
|
|
|
|
{
|
|
|
|
|
}
|