]>
git.immae.eu Git - github/shaarli/Shaarli.git/blob - ShaarliFrontException.php
73847e6d17bf6ec2a33595766bd5ddce779d7523
3 declare(strict_types
=1);
5 namespace Shaarli\Front\Exception
;
10 * Class ShaarliException
12 * Exception class used to defined any custom exception thrown during front rendering.
14 * @package Front\Exception
16 class ShaarliFrontException
extends \Exception
18 /** Override parent constructor to force $message and $httpCode parameters to be set. */
19 public function __construct(string $message, int $httpCode, Throwable
$previous = null)
21 parent
::__construct($message, $httpCode, $previous);