/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
- <?php
- /**
- * Nette Framework
- *
- * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- *
- * This source file is subject to the "Nette license" that is bundled
- * with this package in the file license.txt.
- *
- * For more information please see http://nettephp.com
- *
- * @copyright Copyright (c) 2004, 2009 David Grudl
- * @license http://nettephp.com/license Nette license
- * @link http://nettephp.com
- * @category Nette
- * @package Nette\Application
- */
- /*namespace Nette\Application;*/
- require_once dirname(__FILE__) . '/../../Application/Exceptions/InvalidLinkException.php';
- /**
- * The exception that is thrown when a presenter cannot be loaded.
- *
- * @author David Grudl
- * @copyright Copyright (c) 2004, 2009 David Grudl
- * @package Nette\Application
- */
- class InvalidPresenterException extends InvalidLinkException
- {
- }