Move Exceptions in a separate directory + Fixed Range function

Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
davidarendsen 2022-08-12 12:58:29 +00:00
commit 648709bd19
9 changed files with 47 additions and 19 deletions

View file

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