/Nette/Application/Exceptions/BadSignalException.php
https://github.com/DocX/nette · PHP · 40 lines · 6 code · 9 blank · 25 comment · 0 complexity · 549e254716aefbf722da3bccc29a8ca1 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/BadRequestException.php';
- /**
- * Signal exception.
- *
- * @author David Grudl
- * @copyright Copyright (c) 2004, 2009 David Grudl
- * @package Nette\Application
- */
- class BadSignalException extends BadRequestException
- {
- /** @var int */
- protected $defaultCode = 403;
- }