flux-querybuilder/src/Exception/FunctionRequiredSettingMissingException.php

13 lines
299 B
PHP
Raw Normal View History

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