PageRenderTime 59ms CodeModel.GetById 36ms RepoModel.GetById 1ms app.codeStats 0ms

/Nette/Application/Exceptions/InvalidPresenterException.php

https://github.com/DocX/nette
PHP | 37 lines | 5 code | 8 blank | 24 comment | 0 complexity | 162411dacb8036d6ec8d1c4d6906b895 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /**
  3. * Nette Framework
  4. *
  5. * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
  6. *
  7. * This source file is subject to the "Nette license" that is bundled
  8. * with this package in the file license.txt.
  9. *
  10. * For more information please see http://nettephp.com
  11. *
  12. * @copyright Copyright (c) 2004, 2009 David Grudl
  13. * @license http://nettephp.com/license Nette license
  14. * @link http://nettephp.com
  15. * @category Nette
  16. * @package Nette\Application
  17. */
  18. /*namespace Nette\Application;*/
  19. require_once dirname(__FILE__) . '/../../Application/Exceptions/InvalidLinkException.php';
  20. /**
  21. * The exception that is thrown when a presenter cannot be loaded.
  22. *
  23. * @author David Grudl
  24. * @copyright Copyright (c) 2004, 2009 David Grudl
  25. * @package Nette\Application
  26. */
  27. class InvalidPresenterException extends InvalidLinkException
  28. {
  29. }