ContainerDoesNotExistException.php
6 years ago
ContainerFactory.php
6 years ago
IniConfigDefinitionSource.php
6 years ago
StaticContainer.php
6 years ago
ContainerDoesNotExistException.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | */ |
| 8 | |
| 9 | namespace Piwik\Container; |
| 10 | |
| 11 | use RuntimeException; |
| 12 | |
| 13 | /** |
| 14 | * Thrown if the root container has not been created and set in StaticContainer. |
| 15 | */ |
| 16 | class ContainerDoesNotExistException extends RuntimeException |
| 17 | { |
| 18 | } |
| 19 |