mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00
13 lines
233 B
PHP
13 lines
233 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ViewComponents\Exceptions;
|
||
|
|
||
|
use CodeIgniter\Exceptions\ExceptionInterface;
|
||
|
use RuntimeException;
|
||
|
|
||
|
class ComponentNotFoundException extends RuntimeException implements ExceptionInterface
|
||
|
{
|
||
|
}
|