Commit d075e60a authored by Taylor Otwell's avatar Taylor Otwell

renamed exception wrapper to exception examiner.

parent c100f4c5
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
use System\File; use System\File;
class Wrapper { class Examiner {
/** /**
* The exception being wrapped. * The exception being examined.
* *
* @var Exception * @var Exception
*/ */
...@@ -33,7 +33,7 @@ class Wrapper { ...@@ -33,7 +33,7 @@ class Wrapper {
); );
/** /**
* Create a new exception wrapper instance. * Create a new exception examiner instance.
* *
* @param Exception $e * @param Exception $e
* @return void * @return void
......
...@@ -7,9 +7,9 @@ use System\Response; ...@@ -7,9 +7,9 @@ use System\Response;
class Handler { class Handler {
/** /**
* The exception wrapper for the exception being handled. * The exception examiner for the exception being handled.
* *
* @var Wrapper * @var Examiner
*/ */
public $exception; public $exception;
...@@ -21,7 +21,7 @@ class Handler { ...@@ -21,7 +21,7 @@ class Handler {
*/ */
public function __construct($e) public function __construct($e)
{ {
$this->exception = new Wrapper($e); $this->exception = new Examiner($e);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment