Public Access
28 lines
465 B
PHP
28 lines
465 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
|
||
|
|
*
|
||
|
|
* @package MokoStandards\Enterprise
|
||
|
|
* @version 04.00.04
|
||
|
|
* @author MokoStandards Team
|
||
|
|
* @license GPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace MokoEnterprise;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Exception raised when recovery operations fail.
|
||
|
|
*/
|
||
|
|
class RecoveryError extends RuntimeException
|
||
|
|
{
|
||
|
|
}
|