Files

35 lines
723 B
PHP
Raw Permalink Normal View History

<?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/moko-platform
* PATH: /lib/Enterprise/RecoveryError.php
* BRIEF: Recovery error exception class
*
* @package MokoPlatform\Enterprise
* @version 04.00.04
* @author moko-platform Team
* @license GPL-3.0-or-later
*/
namespace MokoEnterprise;
use RuntimeException;
/**
* Exception raised when recovery operations fail.
*/
class RecoveryError extends RuntimeException
{
}