2899ebb5b5
- Reorganize visitor controllers - Fix redirection with Slim's requests base path - Fix daily links
15 lines
322 B
PHP
15 lines
322 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shaarli\Front\Exception;
|
|
|
|
class LoginBannedException extends ShaarliFrontException
|
|
{
|
|
public function __construct()
|
|
{
|
|
$message = t('You have been banned after too many failed login attempts. Try again later.');
|
|
|
|
parent::__construct($message, 401);
|
|
}
|
|
}
|