11 lines
118 B
PHP
11 lines
118 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Shaarli\Front\Exception;
|
||
|
|
||
|
class CantLoginException extends \Exception
|
||
|
{
|
||
|
|
||
|
}
|