Hotfix for missing Exception class

This commit is contained in:
Hypolite Petovan 2017-05-07 15:22:11 -04:00
parent 86cae070f2
commit b4f2fc4e2f
1 changed files with 1 additions and 1 deletions

View File

@ -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);