2021-05-13 16:04:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psr\Container;
|
|
|
|
|
2024-07-30 20:21:59 +00:00
|
|
|
use Throwable;
|
|
|
|
|
2021-05-13 16:04:00 +00:00
|
|
|
/**
|
|
|
|
* Base interface representing a generic exception in a container.
|
|
|
|
*/
|
2024-07-30 20:21:59 +00:00
|
|
|
interface ContainerExceptionInterface extends Throwable
|
2021-05-13 16:04:00 +00:00
|
|
|
{
|
|
|
|
}
|