mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
19a206d57c
when enabled users are blocked from creating or editing new time entries that are overlapping with other time entries
11 lines
184 B
PHP
11 lines
184 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Exceptions\Api;
|
|
|
|
class OverlappingTimeEntryApiException extends ApiException
|
|
{
|
|
public const string KEY = 'overlapping_time_entry';
|
|
}
|