Download the PHP package bsadnu/php-exceptions without Composer
On this page you can find all versions of the php package bsadnu/php-exceptions. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bsadnu/php-exceptions
More information about bsadnu/php-exceptions
Files in bsadnu/php-exceptions
Package php-exceptions
Short Description The helpful custom PHP exceptions and exception interfaces
License MIT
Informations about the package php-exceptions
The helpful custom PHP exceptions
This lets you catch different-layers-specific exceptions (if needed).
Installation
The best way to use this component is through the Composer:
Usage
-
You may use exceptions within the standard throwing/catching mechanism or even extend them in any way you want:
- It is really helpful to catch either the base
BaseExceptionInterface
or any other. Therefore, you can control a group of exceptions. Moreover, you may add manually as many specific interfaces as you wish.
More detailed description
All exceptions used in this library implements \Bsadnu\Exception\Interfaces\BaseExceptionInterface
, and extend one of the SPL extensions. This way, you have several ways of catching specific extension groups:
- Catch all exceptions:
\Exception
- Catch all exceptions thrown by the library:
\Bsadnu\Exception\Interfaces\BaseExceptionInterface
- Catch a specific SPL exception:
\LogicException
- Catch a specific exception thrown by the library:
\Bsadnu\Exception\Base\LogicException
Contributing
All feedback / bug reports / pull requests are welcome.
License
This code is licensed under the MIT License.