Browse Source

removed unecessary methods from exception wrapper.

Taylor Otwell 13 years ago
parent
commit
c100f4c59f
1 changed files with 0 additions and 16 deletions
  1. 0 16
      system/exception/wrapper.php

+ 0 - 16
system/exception/wrapper.php

@@ -83,22 +83,6 @@ class Wrapper {
 		return File::snapshot($this->exception->getFile(), $this->exception->getLine());
 	}
 
-	/**
-	 * Magic Method to handle getting properties from the exception.
-	 */
-	public function __get($key)
-	{
-		return $this->exception->$key;
-	}
-
-	/**
-	 * Magic Method to handle setting properties on the exception.
-	 */
-	public function __set($key, $value)
-	{
-		$this->exception->$key = $value;
-	}
-
 	/**
 	 * Magic Method to pass function calls to the exception.
 	 */