removed unecessary methods from exception wrapper.
This commit is contained in:
parent
512eea1a4e
commit
c100f4c59f
|
@ -83,22 +83,6 @@ public function context()
|
||||||
return File::snapshot($this->exception->getFile(), $this->exception->getLine());
|
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.
|
* Magic Method to pass function calls to the exception.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue