expression

< Back


OperandException

Namespace: Albatross.Expression.Exceptions

Exception thrown when there are issues with operands in expressions.

public class OperandException : System.Exception, System.Runtime.Serialization.ISerializable

Inheritance ObjectExceptionOperandException
Implements ISerializable

Properties

TargetSite

public MethodBase TargetSite { get; }

Property Value

MethodBase

Message

public string Message { get; }

Property Value

String

Data

public IDictionary Data { get; }

Property Value

IDictionary

InnerException

public Exception InnerException { get; }

Property Value

Exception

public string HelpLink { get; set; }

Property Value

String

Source

public string Source { get; set; }

Property Value

String

HResult

public int HResult { get; set; }

Property Value

Int32

StackTrace

public string StackTrace { get; }

Property Value

String

Constructors

OperandException(String)

Initializes a new instance of the OperandException class with a specified error message.

public OperandException(string msg)

Parameters

msg String
The message that describes the error.

Events

SerializeObjectState

Caution

BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information.


protected event EventHandler<SafeSerializationEventArgs> SerializeObjectState;

< Back