13 lines
177 B
PHP
13 lines
177 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Forum\Topic\Models;
|
||
|
|
||
|
use App\SharedKernel\Exceptions\NotFoundException;
|
||
|
|
||
|
final class TopicNotFound extends NotFoundException
|
||
|
{
|
||
|
|
||
|
}
|