11 lines
178 B
PHP
11 lines
178 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace App\Model\Exception\Logic;
|
|
|
|
use App\Model\Exception\LogicException;
|
|
|
|
final class InvalidArgumentException extends LogicException
|
|
{
|
|
|
|
}
|