daycry/exceptions

Exceptions for Codeigniter 4

Installs: 1 922

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/daycry/exceptions

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

This package is auto-updated.

Last update: 2025-10-07 16:16:11 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
{

}