mirror of
https://code.castopod.org/adaures/castopod
synced 2025-08-26 14:29:28 +00:00
16 lines
293 B
PHP
16 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Api\Rest\V1\Controllers;
|
|
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
|
|
class ExceptionController extends BaseApiController
|
|
{
|
|
public function notFound(): ResponseInterface
|
|
{
|
|
return $this->failNotFound('Podcast not found');
|
|
}
|
|
}
|