12 lines
243 B
PHP
12 lines
243 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Xentral\Modules\TimeManagement\Exception;
|
||
|
|
|
||
|
|
use RuntimeException as SplRuntimeException;
|
||
|
|
|
||
|
|
final class EmailNotFoundException extends SplRuntimeException implements TimeManagementExceptionInterface
|
||
|
|
{
|
||
|
|
}
|