diff --git a/CHANGELOG.md b/CHANGELOG.md index 321929f..d196ec2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 1.14.3 - Unreleased + +- [#207](https://github.com/php-http/discovery/pull/207) - Updates Exception to extend Throwable solving static analysis errors for consumers + ## 1.14.2 - 2022-05-25 - [#202](https://github.com/php-http/discovery/pull/202) - Avoid error when the Symfony PSR-18 client exists but its dependencies are not installed diff --git a/src/Exception.php b/src/Exception.php index 973c908..58b0523 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -2,11 +2,13 @@ namespace Http\Discovery; +use Throwable; + /** * An interface implemented by all discovery related exceptions. * * @author Tobias Nyholm */ -interface Exception +interface Exception extends Throwable { }