Table of Contents

Class CompileException

Namespace
Utils.Expressions
Assembly
Utils.dll

Represents the base class for compile-time exceptions that occur during expression compilation in the Utils.Expressions namespace.

public abstract class CompileException : Exception, ISerializable
Inheritance
CompileException
Implements
Inherited Members
Extension Methods

Constructors

CompileException(string, int)

Initializes a new instance of the CompileException class with the specified error message and error index.

protected CompileException(string message, int errorIndex)

Parameters

message string

A short description of the compilation error.

errorIndex int

The position (index) near where the compilation error occurred.

CompileException(string, int, Exception)

Initializes a new instance of the CompileException class with the specified error message, error index, and an inner exception.

protected CompileException(string message, int errorIndex, Exception inner)

Parameters

message string

A short description of the compilation error.

errorIndex int

The position (index) near where the compilation error occurred.

inner Exception

The inner exception that caused this compilation error.