From d075e60a66789164e803dedf7c76130f25600352 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 16 Aug 2011 22:39:44 -0500 Subject: [PATCH] renamed exception wrapper to exception examiner. --- system/exception/{wrapper.php => examiner.php} | 6 +++--- system/exception/handler.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) rename system/exception/{wrapper.php => examiner.php} (95%) diff --git a/system/exception/wrapper.php b/system/exception/examiner.php similarity index 95% rename from system/exception/wrapper.php rename to system/exception/examiner.php index 008c2808..93587f7f 100644 --- a/system/exception/wrapper.php +++ b/system/exception/examiner.php @@ -2,10 +2,10 @@ use System\File; -class Wrapper { +class Examiner { /** - * The exception being wrapped. + * The exception being examined. * * @var Exception */ @@ -33,7 +33,7 @@ class Wrapper { ); /** - * Create a new exception wrapper instance. + * Create a new exception examiner instance. * * @param Exception $e * @return void diff --git a/system/exception/handler.php b/system/exception/handler.php index c2f74a64..da7684f0 100644 --- a/system/exception/handler.php +++ b/system/exception/handler.php @@ -7,9 +7,9 @@ class Handler { /** - * The exception wrapper for the exception being handled. + * The exception examiner for the exception being handled. * - * @var Wrapper + * @var Examiner */ public $exception; @@ -21,7 +21,7 @@ class Handler { */ public function __construct($e) { - $this->exception = new Wrapper($e); + $this->exception = new Examiner($e); } /**