11 lines
181 B
PHP
11 lines
181 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace App\Model\Exception\Runtime;
|
|
|
|
use App\Model\Exception\RuntimeException;
|
|
|
|
final class InvalidStateException extends RuntimeException
|
|
{
|
|
|
|
}
|