Table of Contents

Class LinqToDBException

Namespace
LinqToDB
Assembly
linq2db.dll

Exception type for exceptions, thrown by Linq To DB.

public class LinqToDBException : Exception, ISerializable
Inheritance
LinqToDBException
Implements
Derived
Inherited Members
Extension Methods

Constructors

LinqToDBException(string)

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

public LinqToDBException(string message)

Parameters

message string

The message to display to the client when the exception is thrown.

See Also

LinqToDBException(string, Exception)

Initializes a new instance of the LinqToDBException class with the specified error message and InnerException property.

public LinqToDBException(string message, Exception innerException)

Parameters

message string

The message to display to the client when the exception is thrown.

innerException Exception

The InnerException, if any, that threw the current exception.

See Also