refactor: change parent class

This commit is contained in:
kenjis 2024-01-27 19:06:44 +09:00
parent 5178dd171d
commit 9d2c903f7f
No known key found for this signature in database
GPG Key ID: BD254878922AF198
6 changed files with 9 additions and 14 deletions

View File

@ -14,7 +14,7 @@ declare(strict_types=1);
namespace CodeIgniter\CLI\Exceptions;
use CodeIgniter\Exceptions\DebugTraceableTrait;
use RuntimeException;
use CodeIgniter\Exceptions\RuntimeException;
/**
* CLIException

View File

@ -13,12 +13,10 @@ declare(strict_types=1);
namespace CodeIgniter\Exceptions;
use RuntimeException;
/**
* Class DownloadException
*/
class DownloadException extends RuntimeException implements ExceptionInterface
class DownloadException extends RuntimeException
{
use DebugTraceableTrait;

View File

@ -14,10 +14,9 @@ declare(strict_types=1);
namespace CodeIgniter\Files\Exceptions;
use CodeIgniter\Exceptions\DebugTraceableTrait;
use CodeIgniter\Exceptions\ExceptionInterface;
use RuntimeException;
use CodeIgniter\Exceptions\RuntimeException;
class FileException extends RuntimeException implements ExceptionInterface
class FileException extends RuntimeException
{
use DebugTraceableTrait;

View File

@ -14,10 +14,9 @@ declare(strict_types=1);
namespace CodeIgniter\Files\Exceptions;
use CodeIgniter\Exceptions\DebugTraceableTrait;
use CodeIgniter\Exceptions\ExceptionInterface;
use RuntimeException;
use CodeIgniter\Exceptions\RuntimeException;
class FileNotFoundException extends RuntimeException implements ExceptionInterface
class FileNotFoundException extends RuntimeException
{
use DebugTraceableTrait;

View File

@ -14,13 +14,12 @@ declare(strict_types=1);
namespace CodeIgniter\Format\Exceptions;
use CodeIgniter\Exceptions\DebugTraceableTrait;
use CodeIgniter\Exceptions\ExceptionInterface;
use RuntimeException;
use CodeIgniter\Exceptions\RuntimeException;
/**
* FormatException
*/
class FormatException extends RuntimeException implements ExceptionInterface
class FormatException extends RuntimeException
{
use DebugTraceableTrait;

View File

@ -13,7 +13,7 @@ declare(strict_types=1);
namespace CodeIgniter\Router\Exceptions;
use RuntimeException;
use CodeIgniter\Exceptions\RuntimeException;
/**
* @internal