11 lines
136 B
PHP
11 lines
136 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\SharedKernel\Exceptions;
|
|
|
|
abstract class NotFoundException extends \DomainException
|
|
{
|
|
|
|
}
|