flux-querybuilder/src/Exception/FunctionRequiredSettingMissingException.php
davidarendsen 648709bd19 Move Exceptions in a separate directory + Fixed Range function
Signed-off-by: davidarendsen <davidarendsen@hey.com>
2022-08-12 12:58:29 +00:00

14 lines
No EOL
304 B
PHP

<?php
namespace Arendsen\FluxQueryBuilder\Exception;
use Exception;
class FunctionRequiredSettingMissingException extends Exception {
public function __construct(string $functionName, string $message)
{
parent::__construct('Function ' . $functionName . ' - ' . $message);
}
}