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

14 lines
286 B
PHP

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