learning-center/app/Auth/Models/IsNotAuthenticated.php
2024-09-08 13:48:26 +03:00

14 lines
217 B
PHP

<?php
declare(strict_types=1);
namespace App\Auth\Models;
final class IsNotAuthenticated extends \Exception
{
public function __construct()
{
parent::__construct('Authentication required');
}
}