14 lines
286 B
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';
|
|
} |