| 1 | <?php namespace GenericCollections\Exceptions;  | 
            ||
| 3 | class ContainerIsEmptyException extends GenericCollectionsException  | 
            ||
| 4 | { | 
            ||
| 5 | /**  | 
            ||
| 6 | * ContainerIsEmptyException constructor.  | 
            ||
| 7 | *  | 
            ||
| 8 | * @param string $container  | 
            ||
| 9 | * @param int $action  | 
            ||
| 10 | * @param int $code  | 
            ||
| 11 | * @param \Exception|null $previous  | 
            ||
| 12 | */  | 
            ||
| 13 | 6 | public function __construct($container, $action, $code = 0, \Exception $previous = null)  | 
            |
| 18 | }  | 
            ||
| 19 |