From 7194f3e3e042eb4711ce0ca4bf10df16fdcfc096 Mon Sep 17 00:00:00 2001 From: maximebf Date: Tue, 18 Jun 2013 14:33:11 +0900 Subject: [PATCH] fixed bug where the Exception class is not "used" --- src/DebugBar/DebugBarException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugBar/DebugBarException.php b/src/DebugBar/DebugBarException.php index f887a08..13c09cd 100644 --- a/src/DebugBar/DebugBarException.php +++ b/src/DebugBar/DebugBarException.php @@ -10,7 +10,7 @@ namespace DebugBar; -class DebugBarException extends Exception +class DebugBarException extends \Exception { }