/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

  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/BadRequestException.php';
  20. /**
  21. * Signal exception.
  22. *
  23. * @author David Grudl
  24. * @copyright Copyright (c) 2004, 2009 David Grudl
  25. * @package Nette\Application
  26. */
  27. class BadSignalException extends BadRequestException
  28. {
  29. /** @var int */
  30. protected $defaultCode = 403;
  31. }