From b4f2fc4e2fdd1756ee71016b00659edbb00f426e Mon Sep 17 00:00:00 2001
From: Hypolite Petovan <mrpetovan@gmail.com>
Date: Sun, 7 May 2017 15:22:11 -0400
Subject: [PATCH] Hotfix for missing Exception class

---
 src/App.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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