2022-08-12 12:58:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Arendsen\FluxQueryBuilder\Exception;
|
|
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
|
2022-08-15 20:28:25 +00:00
|
|
|
class FunctionRequiredSettingMissingException extends Exception
|
|
|
|
|
{
|
2022-08-12 12:58:29 +00:00
|
|
|
public function __construct(string $functionName, string $message)
|
|
|
|
|
{
|
|
|
|
|
parent::__construct('Function ' . $functionName . ' - ' . $message);
|
|
|
|
|
}
|
2022-08-15 20:28:25 +00:00
|
|
|
}
|