Table of Contents

Class BulkSelectionOverflowException

Namespace
IdeaStatiCa.Plugin.Exeptions
Assembly
IdeaStatiCa.Plugin.dll

Exception thrown when a bulk selection process exceeds the allowed limit, resulting in all members being grouped into a single connection.

public class BulkSelectionOverflowException : Exception, ISerializable, _Exception

Inheritance

Implements

Inherited Members

Constructors

BulkSelectionOverflowException()

Initializes a new instance of the IdeaStatiCa.Plugin.Exeptions.BulkSelectionOverflowException class with a default error message.

public BulkSelectionOverflowException()

BulkSelectionOverflowException(string)

Initializes a new instance of the IdeaStatiCa.Plugin.Exeptions.BulkSelectionOverflowException class with a specified error message.

public BulkSelectionOverflowException(string message)

Parameters

message string

The error message describing the cause of the exception.

BulkSelectionOverflowException(string, Exception)

Initializes a new instance of the IdeaStatiCa.Plugin.Exeptions.BulkSelectionOverflowException class with a specified error message and an inner exception that caused this exception.

public BulkSelectionOverflowException(string message, Exception innerException)

Parameters

message string

The error message describing the cause of the exception.

innerException Exception

The exception that caused the current exception.

BulkSelectionOverflowException(int)

Initializes a new instance of the IdeaStatiCa.Plugin.Exeptions.BulkSelectionOverflowException class including the number of members in the connection.

public BulkSelectionOverflowException(int membersInConnection)

Parameters

membersInConnection int

The number of members in the connection.

BulkSelectionOverflowException(int, int)

Initializes a new instance of the IdeaStatiCa.Plugin.Exeptions.BulkSelectionOverflowException class including the number of members in the connection and the theoretical size limit.

public BulkSelectionOverflowException(int membersInConnection, int connectionSizeLimit)

Parameters

membersInConnection int

The number of members in the connection.

connectionSizeLimit int

The theoretical size limit for a valid connection.

Properties

ConnectionSizeLimit

Gets the theoretical size limit for a valid connection.

public int? ConnectionSizeLimit { get; }

Property Value

int?

MembersInConnection

Gets the number of members in the connection that caused the exception.

public int? MembersInConnection { get; }

Property Value

int?