learning-center/app/SharedKernel/File/Models/FileNotFound.php

16 lines
274 B
PHP
Raw Permalink Normal View History

2024-09-08 13:48:26 +03:00
<?php
declare(strict_types=1);
namespace App\SharedKernel\File\Models;
use App\SharedKernel\Exceptions\NotFoundException;
final class FileNotFound extends NotFoundException
{
public function __construct()
{
parent::__construct('File not found');
}
}