<?php
/**
 * @copyright NetMonsters <team@netmonsters.ru>
 * @link http://netmonsters.ru
 * @package Majestic
 * @subpackage Layout
 * @since 2010-02-25
 * @version SVN: $Id$
 * @filesource $URL$
 */

class ErrorLayout extends Layout
{
    /**
     * @var GeneralException
     */
    protected $exception;

    protected function execute()
    {
    }

    /**
     * @param GeneralException $exception
     */
    public function setException(GeneralException $exception)
    {
        $this->exception = $exception;
    }
}