Class ExpressionParserException
Represents an error that occurs during parsing of an expression.
Inheritance
Inherited Members
Namespace: Telerik.Expressions
Assembly: Telerik.Windows.Data.dll
Syntax
public class ExpressionParserException : Exception, ISerializable, _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(SerializationInfo, StreamingContext)
Initializes a new instance of the ExpressionParserException class.
Declaration
protected ExpressionParserException(SerializationInfo info, StreamingContext context)
Parameters
System.Runtime.Serialization.SerializationInfo
info
The System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown. |
System.Runtime.Serialization.StreamingContext
context
The System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination. |
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>
|
Methods
GetObjectData(SerializationInfo, StreamingContext)
Declaration
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
System.Runtime.Serialization.SerializationInfo
info
|
System.Runtime.Serialization.StreamingContext
context
|