Table of Contents

Class CyclicStructureException

Namespace
AsmResolver.DotNet.Memory
Assembly
AsmResolver.DotNet.dll

Represents the exception that occurs when a structure contains cyclic dependencies. That is, it defines at least one field of which the field type constructs a dependency cycle.

[Serializable]
public class CyclicStructureException : Exception, ISerializable
Inheritance
CyclicStructureException
Implements
Inherited Members

Constructors

CyclicStructureException()

Creates a new instance of the CyclicStructureException.

public CyclicStructureException()

CyclicStructureException(string)

Creates a new instance of the CyclicStructureException.

public CyclicStructureException(string message)

Parameters

message string

The exception message.

CyclicStructureException(string, Exception)

Creates a new instance of the CyclicStructureException.

public CyclicStructureException(string message, Exception inner)

Parameters

message string

The exception message.

inner Exception

The inner cause of the exception.