From 5bce35f022f775e8b15d4bf3484b12871f403c7d Mon Sep 17 00:00:00 2001 From: Anton Grebnev Date: Thu, 4 Oct 2012 19:41:42 +0400 Subject: [PATCH] modified setException method param type to Exception --- layout/Error.layout.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/Error.layout.php b/layout/Error.layout.php index c50b866..62ed7ce 100644 --- a/layout/Error.layout.php +++ b/layout/Error.layout.php @@ -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; }