PHPackages                             agilesdesign/exceptum - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. agilesdesign/exceptum

ActiveLibrary

agilesdesign/exceptum
=====================

Custom Exception Handling for Laravel

v1.0.0-alpha.1(9y ago)218MITPHP

Since Nov 29Pushed 9y agoCompare

[ Source](https://github.com/agilesdesign/exceptum)[ Packagist](https://packagist.org/packages/agilesdesign/exceptum)[ RSS](/packages/agilesdesign-exceptum/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

exceptum
========

[](#exceptum)

Custom Exception Handling for Laravel

### Installation

[](#installation)

##### Include through composer

[](#include-through-composer)

`composer require agilesdesign/exceptum`

##### Add to provider list

[](#add-to-provider-list)

```
'providers' => [
    Exceptum\Providers\ExceptumServiceProvider::class,
];
```

### Usage

[](#usage)

##### Create an Abettor

[](#create-an-abettor)

`Abettor` is synonymous with `App\Exceptions\Handler` in it's intent, but is not an extension of it.

Currently it only supports implementing the response provided to the `render` method on `App\Exception\Handler`

```
class AuthorizatonExceptionAbettor implements Abettor
{
    public function render($request, Exception $exception)
    {
        // handle exception
    }
}

```

##### Register Mapping

[](#register-mapping)

Exceptum falls back to Laravel's App\\Exception\\Handler class unless it knows about an Abettor responsible for Exception thrown.

To tell Exceptum about an Abettor register a mapping in your `ServiceProviders` `register` method

```
public function register()
{
    Exceptum::map(AuthorizationException::class, AuthorizationExceptionAbettor::class);
}
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3453d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/22e0796a6ce5a744ca1e68660fa49b9f86fa3e2cc6c0787c872281a16776df7a?d=identicon)[jrseliga](/maintainers/jrseliga)

---

Top Contributors

[![jrseliga](https://avatars.githubusercontent.com/u/3277067?v=4)](https://github.com/jrseliga "jrseliga (2 commits)")

### Embed Badge

![Health badge](/badges/agilesdesign-exceptum/health.svg)

```
[![Health](https://phpackages.com/badges/agilesdesign-exceptum/health.svg)](https://phpackages.com/packages/agilesdesign-exceptum)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
