mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00

- replace some helper components and forms with class components in the ui - create viewcomponents service and load the component function to be used in views
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
|
|
{
|
|
}
|