You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
517 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. <?php namespace Majestic\Layout;
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage Layout
  7. * @since 2010-02-25
  8. */
  9. class ErrorLayout extends Layout
  10. {
  11. /**
  12. * @var \Majestic\ExceptionGeneralException
  13. */
  14. protected $exception;
  15. protected function execute()
  16. {
  17. }
  18. /**
  19. * @param \Exception $exception
  20. */
  21. public function setException(\Exception $exception)
  22. {
  23. $this->exception = $exception;
  24. }
  25. }