Class ExpressionException
Exception thrown when an error occurs during formula parsing, evaluation, or manipulation, with support for localized error messages.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ExpressionException : LocalizableException, ISerializable, _Exception
Constructors
ExpressionException(String)
Initializes a new instance of the ExpressionException class with the specified error message.
Declaration
public ExpressionException(string message)
Parameters
|
System.String
message
The message. |
ExpressionException(String, Exception)
Initializes a new instance of the ExpressionException class with an inner exception for chaining.
Declaration
public ExpressionException(string message, Exception innerException)
Parameters
|
System.String
message
The message. |
|
System.Exception
innerException
The inner exception. |
ExpressionException(String, Exception, String, String[])
Initializes a new instance of the ExpressionException class with both an inner exception and localization support.
Declaration
public ExpressionException(string message, Exception innerException, string key, string[] formatStringArguments = null)
Parameters
|
System.String
message
The message. |
|
System.Exception
innerException
The inner exception. |
|
System.String
key
The key. |
|
System.String[]
formatStringArguments
The format string arguments. |
ExpressionException(String, String, String[])
Initializes a new instance of the ExpressionException class with localization support via a resource key.
Declaration
public ExpressionException(string message, string key, string[] formatStringArguments = null)
Parameters
|
System.String
message
The message. |
|
System.String
key
The key. |
|
System.String[]
formatStringArguments
The format string arguments. |