daycry/exceptions

Codeigniter 4 的异常处理

v1.0.3 2023-12-07 12:32 UTC

This package is auto-updated.

Last update: 2024-09-07 14:02:00 UTC


README

Codeigniter 4 的异常处理

通过 composer 安装

使用 composer install 安装此包

> composer require daycry/exceptions
<?php

declare(strict_types=1);

namespace App\Exceptions;

use Daycry\Exceptions\Exceptions\RuntimeException;

class ExampleException extends RuntimeException
{

}