Remove Throwable interface from exceptions (port of #31 to 2.x)

This commit is contained in:
Alessandro Lai
2021-03-08 10:32:22 +01:00
parent 68f5200c33
commit 19764b1677
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -5,6 +5,6 @@ namespace Psr\Container;
/**
* No entry was found in the container.
*/
interface NotFoundExceptionInterface extends ContainerExceptionInterface
interface NotFoundExceptionInterface
{
}