From b9d58dce7606c0c4717bc9bbac3747bbe6117e0a Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sat, 30 Jul 2016 06:19:33 -0400 Subject: [PATCH] Fixed the exceptions --- lib/Github/Exception/ExceptionInterface.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Github/Exception/ExceptionInterface.php b/lib/Github/Exception/ExceptionInterface.php index cba560542bb..87e6d2f77fa 100644 --- a/lib/Github/Exception/ExceptionInterface.php +++ b/lib/Github/Exception/ExceptionInterface.php @@ -2,6 +2,8 @@ namespace Github\Exception; -interface ExceptionInterface +use Http\Client\Exception; + +interface ExceptionInterface extends Exception { }