Commit c100f4c5 by Taylor Otwell

removed unecessary methods from exception wrapper.

parent 512eea1a
......@@ -84,22 +84,6 @@ class Wrapper {
}
/**
* 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.
*/
public function __call($method, $parameters)
......
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