13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace LotGD\Core\Exceptions;
|
|
|
|
/**
|
|
* Exception if a specific, required argument is missing
|
|
*/
|
|
class KeyNotFoundException extends CoreException
|
|
{
|
|
|
|
}
|