mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02: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
12 lines
233 B
PHP
12 lines
233 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ViewComponents\Exceptions;
|
|
|
|
use CodeIgniter\Exceptions\ExceptionInterface;
|
|
use RuntimeException;
|
|
|
|
class ComponentNotFoundException extends RuntimeException implements ExceptionInterface
|
|
{
|
|
}
|