using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSharpCode.Decompiler
{
///
/// Represents an error while resolving a reference to a type or a member.
///
[Serializable]
public class ReferenceResolvingException : Exception
{
///
/// Initializes a new instance of the class
///
public ReferenceResolvingException()
{
}
///
/// Initializes a new instance of the class
///
/// A 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.
public ReferenceResolvingException(string message)
: base(message)
{
}
///
/// Initializes a new instance of the class
///
/// A 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.
/// 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.
public ReferenceResolvingException(string message, Exception inner)
: base(message, inner)
{
}
///
/// Initializes a new instance of the class
///
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
protected ReferenceResolvingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
}
}