daycry/exceptions

Exceptions for Codeigniter 4

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

This package is auto-updated.

Last update: 2024-05-07 13:18:28 UTC


README

Exceptions for Codeigniter 4

Installation via composer

Use the package with composer install

> composer require daycry/exceptions
<?php

declare(strict_types=1);

namespace App\Exceptions;

use Daycry\Exceptions\Exceptions\RuntimeException;

class ExampleException extends RuntimeException
{

}