]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - AlreadyInstalledException.php
4add86cf9a60e75c86a748e381ea72b44b54a59e
[github/shaarli/Shaarli.git] / AlreadyInstalledException.php
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Shaarli\Front\Exception;
6
7 class AlreadyInstalledException extends ShaarliFrontException
8 {
9 public function __construct()
10 {
11 $message = t('Shaarli has already been installed. Login to edit the configuration.');
12
13 parent::__construct($message, 401);
14 }
15 }