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