Browse Source

renamed exception wrapper to exception examiner.

Taylor Otwell 13 years ago
parent
commit
d075e60a66
2 changed files with 6 additions and 6 deletions
  1. 3 3
      system/exception/examiner.php
  2. 3 3
      system/exception/handler.php

+ 3 - 3
system/exception/wrapper.php → 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

+ 3 - 3
system/exception/handler.php

@@ -7,9 +7,9 @@ use System\Response;
 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);
 	}
 
 	/**