From: Hypolite Petovan Date: Sun, 7 May 2017 19:22:11 +0000 (-0400) Subject: Hotfix for missing Exception class X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b4f2fc4e2fdd1756ee71016b00659edbb00f426e;p=friendica.git Hotfix for missing Exception class --- diff --git a/src/App.php b/src/App.php index efb60c0386..674a99e053 100644 --- a/src/App.php +++ b/src/App.php @@ -192,7 +192,7 @@ class App { } if (! static::directory_usable($basepath)) { - throw new Exception('Basepath ' . $basepath . ' isn\'t usable.'); + throw new \Exception('Basepath ' . $basepath . ' isn\'t usable.'); } $this->basepath = rtrim($basepath, DIRECTORY_SEPARATOR);