13 lines
181 B
PHP
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
|
|
{
|
|
|
|
}
|