aboutsummaryrefslogblamecommitdiffhomepage
path: root/application/front/exceptions/ShaarliFrontException.php
blob: fc8eb92be5d2c0f041fd0ed8814708017e6f0585 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                               
                                                       






                                                                                            
<?php

declare(strict_types=1);

namespace Shaarli\Front\Exception;

use Throwable;

/**
 * Class ShaarliException
 *
 * Abstract exception class used to defined any custom exception thrown during front rendering.
 *
 * @package Front\Exception
 */
abstract class ShaarliFrontException extends \Exception
{
    /** Override parent constructor to force $message and $httpCode parameters to be set. */
    public function __construct(string $message, int $httpCode, Throwable $previous = null)
    {
        parent::__construct($message, $httpCode, $previous);
    }
}