]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/front/exceptions/AlreadyInstalledException.php
Inject current template name in templates
[github/shaarli/Shaarli.git] / application / front / exceptions / AlreadyInstalledException.php
CommitLineData
c4ad3d4f
A
1<?php
2
3declare(strict_types=1);
4
5namespace Shaarli\Front\Exception;
6
7class 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}