Class EvalException
Definition of a specialiced exception used by expression evaluator
Implements
Inherited Members
Namespace: Reportman.Reporting
Assembly: Reportman.Reporting.dll
Syntax
public class EvalException : Exception, ISerializable
Constructors
EvalException(string, int, int, string)
Constructor, this will provide additional debug information for the designer to find the source of the problem inside a expression
Declaration
public EvalException(string amessage, int asourceline, int asourcepos, string aelementname)
Parameters
| Type | Name | Description |
|---|---|---|
| string | amessage | |
| int | asourceline | |
| int | asourcepos | |
| string | aelementname |
Fields
ElementName
The element name that caused the exception
Declaration
public string ElementName
Field Value
| Type | Description |
|---|---|
| string |
Properties
SourceLine
Source line number in the original expression (full expression)
Declaration
public int SourceLine { get; }
Property Value
| Type | Description |
|---|---|
| int |
SourcePos
Position where the exception have been thrown, in the original expression
Declaration
public int SourcePos { get; }
Property Value
| Type | Description |
|---|---|
| int |