learning-center/app/Auth/Models/IsNotAuthenticated.php

14 lines
217 B
PHP
Raw Permalink Normal View History

2024-09-08 13:48:26 +03:00
<?php
declare(strict_types=1);
namespace App\Auth\Models;
final class IsNotAuthenticated extends \Exception
{
public function __construct()
{
parent::__construct('Authentication required');
}
}