Skip to content

Commit

Permalink
Extend Exception from Throwable
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteel committed Jul 11, 2022
1 parent c8d4885 commit 2c95f8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

namespace Http\Discovery;

use Throwable;

/**
* An interface implemented by all discovery related exceptions.
*
* @author Tobias Nyholm <[email protected]>
*/
interface Exception
interface Exception extends Throwable
{
}

0 comments on commit 2c95f8d

Please sign in to comment.