Move Exceptions in a separate directory + Fixed Range function
Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
parent
79edee7400
commit
648709bd19
9 changed files with 47 additions and 19 deletions
14
src/Exception/FunctionRequiredSettingMissingException.php
Normal file
14
src/Exception/FunctionRequiredSettingMissingException.php
Normal 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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue