ConfigNotFoundException.php
17 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\Config; |
| 10 | |
| 11 | /** |
| 12 | * Exception thrown when the config file doesn't exist. |
| 13 | */ |
| 14 | class ConfigNotFoundException extends \Exception |
| 15 | { |
| 16 | } |
| 17 |