Public Access
50260b5cb5
Bulk rename across all non-vendor PHP files: - File header comments (DEFGROUP, INGROUP, REPO, @package) - User-Agent strings - Namespace URI constant in MokoStandardsParser - Descriptive comments and docblocks
35 lines
696 B
PHP
35 lines
696 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* Recovery Error Exception
|
|
*
|
|
* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* FILE INFORMATION
|
|
* DEFGROUP: MokoCLI.Enterprise.Recovery
|
|
* INGROUP: MokoCLI.Enterprise
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/mokocli
|
|
* PATH: /lib/Enterprise/RecoveryError.php
|
|
* BRIEF: Recovery error exception class
|
|
*
|
|
* @package MokoCLI\Enterprise
|
|
* @version 04.00.04
|
|
* @author MokoCLI Team
|
|
* @license GPL-3.0-or-later
|
|
*/
|
|
|
|
namespace MokoEnterprise;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception raised when recovery operations fail.
|
|
*/
|
|
class RecoveryError extends RuntimeException
|
|
{
|
|
}
|