aboutsummaryrefslogtreecommitdiff
path: root/src/NXP/Exception/MathExecutorException.php
diff options
context:
space:
mode:
authorJavier Marín <javier@marinros.com>2020-07-26 05:27:26 +0300
committerBruce Wells <brucekwells@gmail.com>2020-09-16 04:14:44 +0300
commit462d6e4ddc5c6f463a618a0e3ef8691673c67995 (patch)
treeb7ff2fa4c478a9ccc2fd0d17c64d54732f3391fb /src/NXP/Exception/MathExecutorException.php
parenta0e0f405a9ffa11482e53a87eed95d962b8839f6 (diff)
Handler for not found variables (#68)
* Added handler to define not found variables Added support for string variables Fixed strings and ints comparison error * Check if variables have scalar types (int, float, string and bool) Better $onVarNotFound logic
Diffstat (limited to 'src/NXP/Exception/MathExecutorException.php')
-rw-r--r--src/NXP/Exception/MathExecutorException.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NXP/Exception/MathExecutorException.php b/src/NXP/Exception/MathExecutorException.php
index 0e3ea84..4405f85 100644
--- a/src/NXP/Exception/MathExecutorException.php
+++ b/src/NXP/Exception/MathExecutorException.php
@@ -14,6 +14,6 @@ namespace NXP\Exception;
/**
* @author Vitaliy Zhuk <zhuk2205@gmail.com>
*/
-abstract class MathExecutorException extends \Exception
+class MathExecutorException extends \Exception
{
}