14 lines
No EOL
304 B
PHP
14 lines
No EOL
304 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);
|
|
}
|
|
|
|
} |