A curated set of reusable, semantic domain exceptions for Domain-Driven Design PHP applications. Their names mirror the HTTP 4XX/5XX families because that vocabulary is widely understood, but they are raised in the domain layer, outside any transport, and translated at the boundary into an HTTP response, RPC error, CLI exit or queue dead-letter. Throwing the right exception is part of your domain language, where a generic InvalidArgumentException leaks plumbing into it. Framework-agnostic, with zero runtime dependencies beyond the PHP standard library, on any PHP 8.1+ project.
- Client exceptions - caller-fault types aligned to the 4XX family, from
BadRequestExceptionthroughUnavailableForLegalReasonsException, each with a default message and status code. - Server exceptions - system-fault types aligned to the 5XX family, from
InternalServerErrorExceptionthroughLoopDetectedException. AbstractBaseException- the common base, extending PHP's native\DomainException, so a singlecatchcaptures everything in this package.Request\RequestFailureException- structured per-field validation failures, for one rejected payload carrying many reasons.- Extension by intent - every type is meant to be extended by your own named exception, so callers can still catch the broader intent.
| Dependency | Version |
|---|---|
| PHP | ^8.1 |
composer require hradigital/php-exceptionsEvery exception in this package extends AbstractBaseException, which itself extends PHP's native \DomainException. Each subclass ships with a sensible default message and an HTTP-aligned status code ($code).
use HraDigital\Components\Exceptions\Client\NotFoundException;
throw new NotFoundException('User #42 does not exist.');use HraDigital\Components\Exceptions\AbstractBaseException;
use HraDigital\Components\Exceptions\Client\ConflictException;
use HraDigital\Components\Exceptions\Client\NotFoundException;
use HraDigital\Components\Exceptions\Client\UnprocessableEntityException;
try {
$service->updateProfile($payload);
} catch (UnprocessableEntityException $e) {
// input parsed but failed business-rule validation
} catch (NotFoundException $e) {
// target aggregate / entity does not exist
} catch (ConflictException $e) {
// current state of the aggregate refuses this action
} catch (AbstractBaseException $e) {
// any other domain failure raised by this package
}Pick the closest leaf class and extend it — that way callers can still catch by the broader intent.
use HraDigital\Components\Exceptions\Client\ConflictException;
class EmailAlreadyTakenException extends ConflictException
{
protected $message = 'The provided email is already in use.';
}Listed in HTTP-status order for orientation. Each class carries a docBlock with its semantic meaning, when to extend it, and (where relevant) the browser behaviour the analogous HTTP status triggers.
Client — caller-fault (4XX-aligned)
BadRequestException (400), DeniedAccessException (401), PaymentRequiredException (402), ForbiddenException (403), NotFoundException (404), MethodNotAllowedException (405), NotAcceptableException (406), RequestTimeoutException (408), ConflictException (409), GoneException (410), PreconditionFailedException (412), UnsupportedMediaTypeException (415), RequestedRangeNotSatisfiableException (416), ExpectationFailedException (417), UnprocessableEntityException (422), LockedException (423), FailedDependencyException (424), TooEarlyException (425), PreconditionRequiredException (428), TooManyRequestsException (429), UnavailableForLegalReasonsException (451), plus Request\RequestFailureException for structured per-field validation failures.
Server — system-fault (5XX-aligned)
InternalServerErrorException (500), ServerNotImplementedException (501), BadGatewayException (502), ServerUnavailableException (503), GatewayTimeoutException (504), InsufficientStorageException (507), LoopDetectedException (508).
Transport-only HTTP statuses (407, 411, 413, 414, 421, 426, 431, 505, 506, 510, 511) are intentionally not represented — they have no platform-agnostic domain meaning.
composer install
composer testGitHub Actions runs PHPUnit on every push and pull request, across PHP 8.1 / 8.2 / 8.3 / 8.4 / 8.5.
This package follows Semantic Versioning 2.0.0. Breaking changes only ship in major releases.
Pull requests are welcome. For substantial changes, please open an issue first to discuss what you'd like to change. Add tests for any new behaviour or bug fix.
If you discover a security vulnerability, please email github@hradigital.com instead of opening a public issue.
This package is open-sourced software licensed under the Mozilla Public License 2.0.
You may use this package in closed-source and commercial products. If you modify and distribute the package's own files, those files must remain under the MPL-2.0.
The HRADigital name and package names are not covered by that licence - see
TRADEMARK.md.