Files
majestic/Layout/ErrorLayout.php

28 lines
517 B
PHP
Raw Permalink Normal View History

2014-06-02 18:58:49 +04:00
<?php namespace Majestic\Layout;
/**
* @copyright NetMonsters <team@netmonsters.ru>
* @link http://netmonsters.ru
* @package Majestic
* @subpackage Layout
* @since 2010-02-25
*/
class ErrorLayout extends Layout
{
/**
2014-06-02 18:58:49 +04:00
* @var \Majestic\ExceptionGeneralException
*/
protected $exception;
protected function execute()
{
}
/**
2014-06-02 18:58:49 +04:00
* @param \Exception $exception
*/
2014-06-02 18:58:49 +04:00
public function setException(\Exception $exception)
{
$this->exception = $exception;
}
}