14 lines
325 B
PHP
14 lines
325 B
PHP
<?php
|
|
/**
|
|
* @author Serge Rodovnichenko <serge@syrnik.com>
|
|
* @copyright Serge Rodovnichenko, 2019
|
|
* @license BSD 2.0
|
|
*/
|
|
|
|
namespace Andileco\Util\EvalMath\Exception;
|
|
|
|
|
|
class BuiltInFunctionRedefinitionException extends AbstractEvalMathException
|
|
{
|
|
protected $message = 'Cannot redefine built-in function :function()';
|
|
} |