Class ExecutionException
- Namespace
- xFunc.Maths.Expressions
- Assembly
- xFunc.Maths.dll
Represents an exception which is thrown if expression doesn't support result type of own argument.
[Serializable]
public class ExecutionException : Exception, ISerializable
- Inheritance
-
ExecutionException
- Implements
- Inherited Members
Constructors
ExecutionException()
Initializes a new instance of the ExecutionException class.
public ExecutionException()
ExecutionException(string)
Initializes a new instance of the ExecutionException class.
public ExecutionException(string message)
Parameters
messagestringThe message that describes the error.
ExecutionException(string, Exception)
Initializes a new instance of the ExecutionException class.
public ExecutionException(string message, Exception inner)
Parameters
Methods
For(IExpression)
Creates an instance of ExecutionException with the message of unsupported result.
public static ExecutionException For(IExpression exp)
Parameters
expIExpressionThe expression that encountered unsupported results in its children's expressions.
Returns
- ExecutionException
The instance of ExecutionException.