revert: re-instate extension of Throwable in supplied exception interfaces

See https://github.com/php-fig/container/pull/32#issuecomment-943081411
This commit is contained in:
Matthew Weier O'Phinney
2021-11-05 08:24:30 -05:00
parent 18d00169b8
commit 6009776263

View File

@@ -2,9 +2,11 @@
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface
interface ContainerExceptionInterface extends Throwable
{
}