Files
MokoCLI/lib/Enterprise/SynchronizationException.php
T
Jonathan Miller 925dfc41e2
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Successful in 16s
chore: complete namespace cleanup — remove all mokoplatform/MokoStandards/MokoEnterprise refs
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.
2026-06-21 00:43:06 -05:00

43 lines
1.1 KiB
PHP

<?php
/**
* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
*
* This file is part of a Moko Consulting project.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* FILE INFORMATION
* DEFGROUP: MokoPlatform.Enterprise
* INGROUP: MokoPlatform
* REPO: https://git.mokoconsulting.tech/MokoConsulting/mokocli
* PATH: /lib/Enterprise/SynchronizationException.php
* BRIEF: Custom exception for repository synchronization errors
*/
declare(strict_types=1);
namespace MokoCli;
use RuntimeException;
/**
* Exception thrown when repository synchronization fails or is not implemented
*/
class SynchronizationNotImplementedException extends RuntimeException
{
/**
* Create exception for unimplemented synchronization logic
*
* @return self
*/
public static function create(): self
{
return new self(
"Repository synchronization logic is not implemented. " .
"The processRepository() method contains only placeholder code. " .
"Actual file synchronization, PR creation, and merge handling must be implemented."
);
}
}