From e75a388eb091fb0c4dd1507d0916a7cc9f18d5b3 Mon Sep 17 00:00:00 2001 From: Guillermo Dev Date: Tue, 9 Oct 2018 01:28:50 +0200 Subject: [PATCH] correct namespace --- Lib/Configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/Configuration.php b/Lib/Configuration.php index 34bb61b..ad09e61 100644 --- a/Lib/Configuration.php +++ b/Lib/Configuration.php @@ -61,7 +61,7 @@ class Configuration { $this->values['session']['save_path'] = session_save_path(); if(!file_exists($this->custom_config)) { - throw new \Exception\UsageException('No configuration.local.php file was found. Create it with the proper config.'); + throw new \BSR\Lib\Exception\UsageException('No configuration.local.php file was found. Create it with the proper config.'); } $configuration = include_once $this->custom_config;