Public Access
925dfc41e2
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Successful in 16s
Sweep 391 files across templates, workflows, MCP servers, CLI tools, lib, deploy, validate, wrappers, configs, and docs. All references to mokoplatform, moko-platform, MokoStandards, MokoStandards-API, and MokoEnterprise replaced with mokocli/MokoCli. Also renamed moko-platform.sublime-project → mokocli.sublime-project and fixed composer.json description.
35 lines
704 B
PHP
35 lines
704 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: MokoPlatform.Enterprise.Recovery
|
|
* INGROUP: MokoPlatform.Enterprise
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/mokocli
|
|
* PATH: /lib/Enterprise/RecoveryError.php
|
|
* BRIEF: Recovery error exception class
|
|
*
|
|
* @package MokoPlatform\Enterprise
|
|
* @version 04.00.04
|
|
* @author mokocli Team
|
|
* @license GPL-3.0-or-later
|
|
*/
|
|
|
|
namespace MokoCli;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception raised when recovery operations fail.
|
|
*/
|
|
class RecoveryError extends RuntimeException
|
|
{
|
|
}
|