yiisoft / friendly-exception
An interface for friendlier exception
Fund package maintenance!
Opencollective
yiisoft
Installs: 945 105
Dependents: 52
Suggesters: 0
Security: 0
Stars: 48
Watchers: 20
Forks: 8
Open Issues: 1
Requires
- php: ^7.1|^8.0
Requires (Dev)
- phpunit/phpunit: ^9.4
- roave/infection-static-analysis-plugin: ^1.5
- spatie/phpunit-watcher: ^1.23
- vimeo/psalm: ^4.3
This package is auto-updated.
Last update: 2024-10-18 15:06:19 UTC
README
Yii Friendly Exception
An exception interface that provides a friendly name and a possible solution. Error handlers may consider the interface to render additional information right at the error screen.
Requirements
- PHP 7.4 or higher.
Installation
The package could be installed with Composer:
composer require yiisoft/friendly-exception
General usage
Implementing friendly exception
To make exception friendly require this package and implement FriendlyExceptionInterface
:
use Yiisoft\FriendlyException\FriendlyExceptionInterface; class RequestTimeoutException extends \RuntimeException implements FriendlyExceptionInterface { public function getName(): string { return 'Request timed out.'; } public function getSolution(): ?string { return <<<'SOLUTION' Likely it is a result of resource request is not responding in a timely fashion. Try increasing timeout. SOLUTION; } }
When returning solution consider the following best practices:
- Make solution description as short as possible.
- Do not use HTML tags.
- Use simple markdown.
Handling friendly exception
To make your exception handler render friendly exceptions:
use Yiisoft\FriendlyException\FriendlyExceptionInterface; class ThrowableHandler { public function handle(\Throwable $t) { if ($t instanceof FriendlyExceptionInterface) { // additional handling } // regular handling } }
Do not forget to render markdown.
Documentation
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
License
The Yii Friendly Exception is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.