mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Export;
|
|
|
|
use App\Exceptions\Api\ApiException;
|
|
|
|
class ExportException extends ApiException
|
|
{
|
|
public const string KEY = 'export';
|
|
}
|