System.ArgumentOutOfRangeException
namespace System
{
public class ArgumentOutOfRangeException :
ArgumentException,
ISerializable
{
public virtual object ActualValue { get; }
public ArgumentOutOfRangeException();
protected ArgumentOutOfRangeException(
SerializationInfo info,
StreamingContext context);
public ArgumentOutOfRangeException(
string paramName);
public ArgumentOutOfRangeException(
string message,
Exception innerException);
public ArgumentOutOfRangeException(
string paramName,
object actualValue,
string message);
public ArgumentOutOfRangeException(
string paramName,
string message);
}
}