mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
11 lines
225 B
PHP
11 lines
225 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Exceptions\Api;
|
|
|
|
class OnlyPlaceholdersCanBeMergedIntoAnotherMember extends ApiException
|
|
{
|
|
public const string KEY = 'only_placeholders_can_be_merged_into_another_member';
|
|
}
|