modified setException method param type to Exception

This commit is contained in:
Anton Grebnev
2012-10-04 19:41:42 +04:00
parent e6735dc158
commit 5bce35f022

View File

@ -21,9 +21,9 @@ class ErrorLayout extends Layout
} }
/** /**
* @param GeneralException $exception * @param Exception $exception
*/ */
public function setException(GeneralException $exception) public function setException(Exception $exception)
{ {
$this->exception = $exception; $this->exception = $exception;
} }