Files
farmOS-dev/vendor/andileco/eval-math/src/Exception/UndefinedVariableException.php

14 lines
288 B
PHP

<?php
/**
* @author Serge Rodovnichenko <serge@syrnik.com>
* @copyright Serge Rodovnichenko, 2019
* @license BSD 2.0
*/
namespace Andileco\Util\EvalMath\Exception;
class UndefinedVariableException extends AbstractEvalMathException
{
protected $message = "Undefined variable";
}