From c100f4c59f6d7c27e4819d0bbba8b671cdcc4fe7 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 16 Aug 2011 22:37:02 -0500 Subject: [PATCH] removed unecessary methods from exception wrapper. --- system/exception/wrapper.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/system/exception/wrapper.php b/system/exception/wrapper.php index 39030e5a..008c2808 100644 --- a/system/exception/wrapper.php +++ b/system/exception/wrapper.php @@ -83,22 +83,6 @@ public function context() 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. */