13 lines
140 B
PHP
13 lines
140 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Fastknife\Exception;
|
|
|
|
|
|
use \RuntimeException;
|
|
|
|
class ParamException extends RuntimeException
|
|
{
|
|
|
|
}
|