Releases: subjective-php/util-exceptions
Releases · subjective-php/util-exceptions
Version 4.0.1: Add Support for PHP 8
Version 4.0.0
Version 3.0.1
Developer Changes
- Update dependencies [PR #10]
Version 3.0.0
Backwards Compatibility Breakers
- PHP 7 [PR #9]
Version 2.0.1
Minor Features
- Open Util\Exception for extension
Developer Changes
- Add PULL_REQUEST_TEMPLATE.md
- Add .gitattributes
- Update README.md
- Update composer.json
- Update dependency badge
- Use latest coveralls
Version 2.0.0
Version 1.0.0: Anxious Anaconda
Backwards Compatibility Breakers
- Make Exception class final
Bug Fixes
- Ensure $error is not null in fromLastError() [PR #1]
Developer Changes
- Update README for v1
- Update coveralls badge
- Update travis-ci badge
- Ad CONTRIBUTING guidelines
- Update scrutinizer config
- Add versioneye badge
- Update pholio badge
- format README
- Add homepage to developer / update dependencies
- Fix phpdoc link [PR #2]
Version 0.1.0 - Initial Release
Major Features
\Chadicus\Util\Exception
Static utility class for Exceptions
- getBaseException - Returns the Exception that is the root cause of one or more subsequent exceptions.
- raise - Throws a new \ErrorException based on the error information provided. For use with
set_error_handler - toArray - Converts the given Exception to an array. Ideal for logging exception information
- fromLastError - Creates an ErrorException based on the error from
error_get_last().