Files
core/src/Exceptions/KeyNotFoundException.php
T
Austen McDonald d5747fdf95 Conform to PSR2
2016-08-08 23:03:15 -07:00

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
{
}