-
Notifications
You must be signed in to change notification settings - Fork 0
NotFoundException
Felipe Sayão Lobato Abreu edited this page Jul 3, 2025
·
1 revision
Exception thrown when a requested service identifier is not found in the container.
This class MUST be used in PSR-11 container implementations to represent an error condition where a service ID does not exist in the container. It implements the Psr\Container\NotFoundExceptionInterface to guarantee interoperability with PSR-11 consumers.
- Full name:
\FastForward\Container\Exception\NotFoundException
- Parent class:
Exception
- This class is marked as final and can't be subclassed
- This class implements:
\Psr\Container\NotFoundExceptionInterface
- This class is a Final class
Creates a new NotFoundException for a missing service identifier.
public static forServiceID(string $id): self
This factory method SHOULD be used by the container implementation to report the absence of a given service ID. The resulting exception message SHALL clearly indicate which identifier was not resolved.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$id |
string | the service identifier that was not found |
Return Value:
an instance of NotFoundException describing the missing service
Automatically generated on 2025-07-03