learning-center/app/Forum/Comment/Models/CommentNotFound.php
2024-09-08 13:48:26 +03:00

13 lines
181 B
PHP

<?php
declare(strict_types=1);
namespace App\Forum\Comment\Models;
use App\SharedKernel\Exceptions\NotFoundException;
final class CommentNotFound extends NotFoundException
{
}