13 lines
299 B
PHP
13 lines
299 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);
|
|
}
|
|
}
|