]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/front/exceptions/ShaarliFrontException.php
Initialize admin Slim controllers
[github/shaarli/Shaarli.git] / application / front / exceptions / ShaarliFrontException.php
CommitLineData
6c50a6cc
A
1<?php
2
3declare(strict_types=1);
4
5namespace Shaarli\Front\Exception;
6
7use Throwable;
8
9/**
10 * Class ShaarliException
11 *
12 * Abstract exception class used to defined any custom exception thrown during front rendering.
13 *
14 * @package Front\Exception
15 */
2899ebb5 16abstract class ShaarliFrontException extends \Exception
6c50a6cc
A
17{
18 /** Override parent constructor to force $message and $httpCode parameters to be set. */
19 public function __construct(string $message, int $httpCode, Throwable $previous = null)
20 {
21 parent::__construct($message, $httpCode, $previous);
22 }
23}