Class ExpressionParserException
Represents an error that occurs during parsing of an expression.
Inheritance
Namespace: Telerik.Expressions
Assembly: Telerik.Windows.Data.dll
Syntax
public class ExpressionParserException : Exception
Constructors
ExpressionParserException()
Initializes a new instance of the ExpressionParserException class.
Declaration
public ExpressionParserException()
ExpressionParserException(IEnumerable<ExpressionParserError>)
Initializes a new instance of the ExpressionParserException class.
Declaration
public ExpressionParserException(IEnumerable<ExpressionParserError> errors)
Parameters
System.Collections.Generic.IEnumerable<ExpressionParserError>
errors
|
ExpressionParserException(String)
Initializes a new instance of the ExpressionParserException class.
Declaration
public ExpressionParserException(string message)
Parameters
System.String
message
The exception message. |
ExpressionParserException(String, Exception)
Initializes a new instance of the ExpressionParserException class.
Declaration
public ExpressionParserException(string message, Exception innerException)
Parameters
System.String
message
The exception message. |
System.Exception
innerException
The inner exception. |
Properties
Errors
Gets the errors that occurred while attempting to parse an expression.
Declaration
public IEnumerable<ExpressionParserError> Errors { get; }
Property Value
System.Collections.Generic.IEnumerable<ExpressionParserError>
|