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.

14 lines
396 B

10 years ago
10 years ago
  1. <?php namespace Majestic\Exception;
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage exception
  7. * @since 2010-02-26
  8. */
  9. class Error404Exception extends ErrorHTTPException {
  10. function __construct($message = '', $code = null, \Exception $previous = NULL )
  11. {
  12. parent::__construct($message, 404, $previous);
  13. }
  14. }