|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
namespace Psr\Container;
|
|
|
4 |
|
|
|
5 |
use Throwable;
|
|
|
6 |
|
|
|
7 |
/**
|
|
|
8 |
* Base interface representing a generic exception in a container.
|
|
|
9 |
*/
|
|
|
10 |
interface ContainerExceptionInterface extends Throwable
|
|
|
11 |
{
|
|
|
12 |
}
|