Files
moko-platform/lib/Enterprise/SynchronizationException.php
T
Jonathan Miller 1d87be7d5e
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
fix: standardize file headers — REPO rename, SPDX case, missing fields
- Update REPO: from MokoStandards-API to moko-platform in 125 files
- Fix wrong org path (mokoconsulting-tech → MokoConsulting) in 10 files
- Fix SPDX-LICENSE-IDENTIFIER case in 2 template files
- Add missing REPO: field to 3 files

Authored-by: Moko Consulting

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-11 17:01:17 -05:00

42 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: MokoStandards.Enterprise
* INGROUP: MokoStandards
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
* PATH: /lib/Enterprise/SynchronizationException.php
* BRIEF: Custom exception for repository synchronization errors
*/
declare(strict_types=1);
namespace MokoEnterprise;
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."
);
}
}