System.Globalization.CultureNotFoundException
namespace System.Globalization
{
public class CultureNotFoundException : ArgumentException, ISerializable
{
public virtual int? InvalidCultureId { get; }
public virtual string InvalidCultureName { get; }
public CultureNotFoundException();
protected CultureNotFoundException(SerializationInfo info, StreamingContext context);
public CultureNotFoundException(string message);
public CultureNotFoundException(string message, Exception innerException);
public CultureNotFoundException(string message, int invalidCultureId, Exception innerException);
public CultureNotFoundException(string paramName, int invalidCultureId, string message);
public CultureNotFoundException(string paramName, string message);
public CultureNotFoundException(string message, string invalidCultureName, Exception innerException);
public CultureNotFoundException(string paramName, string invalidCultureName, string message);
}
}