<PackageReference Include="NETStandard.Library" Version="2.0.0-preview2-25401-01" />
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);
}
}