Table of Contents

Class ReferenceResolvingException

Namespace
ICSharpCode.Decompiler.TypeSystem
Assembly
ICSharpCode.Decompiler.dll

Represents an error while resolving a reference to a type or a member.

public class ReferenceResolvingException : Exception, ISerializable
Inheritance
ReferenceResolvingException
Implements
Inherited Members

Constructors

ReferenceResolvingException()

Initializes a new instance of the ReferenceResolvingException class

public ReferenceResolvingException()

ReferenceResolvingException(SerializationInfo, StreamingContext)

Initializes a new instance of the ReferenceResolvingException class

protected ReferenceResolvingException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

The object that holds the serialized object data.

context StreamingContext

The contextual information about the source or destination.

ReferenceResolvingException(string)

Initializes a new instance of the ReferenceResolvingException class

public ReferenceResolvingException(string message)

Parameters

message string

A string that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

ReferenceResolvingException(string, Exception)

Initializes a new instance of the ReferenceResolvingException class

public ReferenceResolvingException(string message, Exception inner)

Parameters

message string

A string that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

inner Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.