comparison vendor/symfony/http-kernel/Exception/AccessDeniedHttpException.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
10 */ 10 */
11 11
12 namespace Symfony\Component\HttpKernel\Exception; 12 namespace Symfony\Component\HttpKernel\Exception;
13 13
14 /** 14 /**
15 * AccessDeniedHttpException.
16 *
17 * @author Fabien Potencier <fabien@symfony.com> 15 * @author Fabien Potencier <fabien@symfony.com>
18 * @author Christophe Coevoet <stof@notk.org> 16 * @author Christophe Coevoet <stof@notk.org>
19 */ 17 */
20 class AccessDeniedHttpException extends HttpException 18 class AccessDeniedHttpException extends HttpException
21 { 19 {
22 /** 20 /**
23 * Constructor.
24 *
25 * @param string $message The internal exception message 21 * @param string $message The internal exception message
26 * @param \Exception $previous The previous exception 22 * @param \Exception $previous The previous exception
27 * @param int $code The internal exception code 23 * @param int $code The internal exception code
28 */ 24 */
29 public function __construct($message = null, \Exception $previous = null, $code = 0) 25 public function __construct($message = null, \Exception $previous = null, $code = 0)