CultureNotFoundException Class

Definition

The exception that is thrown when a method attempts to construct a culture that is not available.

public ref class CultureNotFoundException : ArgumentException
public class CultureNotFoundException : ArgumentException
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CultureNotFoundException : ArgumentException
type CultureNotFoundException = class
    inherit ArgumentException
type CultureNotFoundException = class
    inherit ArgumentException
    interface ISerializable
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CultureNotFoundException = class
    inherit ArgumentException
    interface ISerializable
Public Class CultureNotFoundException
Inherits ArgumentException
Inheritance
CultureNotFoundException
Inheritance
Attributes
Implements

Remarks

A CultureNotFoundException exception is thrown whenever the construction of an invalid culture is eventually attempted within a method. Most commonly, this exception is thrown when a call to one of the following methods fails to create or return a culture:

Warning

On Windows 7 and later operating systems, the .NET Framework retrieves culture data from the operating system. The CultureNotFoundException exception is thrown if the operating system is unable to find the culture, and the culture is not a custom culture or a replacement culture.

If the calling code attempted to instantiate a CultureInfo object by using a culture name, the InvalidCultureName property contains the invalid name, and the HasValue property of the Nullable<T> object returned by the InvalidCultureId property is false. If the calling code attempted to instantiate a CultureInfo object by using a culture identifier, the Value property of the Nullable<T> object returned by the InvalidCultureId property contains the invalid identifier, and the value of the InvalidCultureName property is null.

CultureNotFoundException uses the HRESULT COR_E_ARGUMENT, which has the value 0x80070057.

Constructors

CultureNotFoundException()

Initializes a new instance of the CultureNotFoundException class with its message string set to a system-supplied message.

CultureNotFoundException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the CultureNotFoundException class using the specified serialization data and context.

CultureNotFoundException(String)

Initializes a new instance of the CultureNotFoundException class with the specified error message.

CultureNotFoundException(String, Exception)

Initializes a new instance of the CultureNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

CultureNotFoundException(String, Int32, Exception)

Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture ID, and a reference to the inner exception that is the cause of this exception.

CultureNotFoundException(String, Int32, String)

Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture ID, and the name of the parameter that is the cause this exception.

CultureNotFoundException(String, String)

Initializes a new instance of the CultureNotFoundException class with a specified error message and the name of the parameter that is the cause this exception.

CultureNotFoundException(String, String, Exception)

Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture Name, and a reference to the inner exception that is the cause of this exception.

CultureNotFoundException(String, String, String)

Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture Name, and the name of the parameter that is the cause this exception.

Properties

Data

Gets a collection of key/value pairs that provide additional user-defined information about the exception.

(Inherited from Exception)
HelpLink

Gets or sets a link to the help file associated with this exception.

(Inherited from Exception)
HResult

Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.

(Inherited from Exception)
InnerException

Gets the Exception instance that caused the current exception.

(Inherited from Exception)
InvalidCultureId

Gets the culture identifier that cannot be found.

InvalidCultureName

Gets the culture name that cannot be found.

Message

Gets the error message that explains the reason for the exception.

ParamName

Gets the name of the parameter that causes this exception.

(Inherited from ArgumentException)
Source

Gets or sets the name of the application or the object that causes the error.

(Inherited from Exception)
StackTrace

Gets a string representation of the immediate frames on the call stack.

(Inherited from Exception)
TargetSite

Gets the method that throws the current exception.

(Inherited from Exception)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetBaseException()

When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.

(Inherited from Exception)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetObjectData(SerializationInfo, StreamingContext)
Obsolete.

Sets the SerializationInfo object with the parameter name and additional exception information.

GetObjectData(SerializationInfo, StreamingContext)
Obsolete.

Sets the SerializationInfo object with the parameter name and additional exception information.

(Inherited from ArgumentException)
GetType()

Gets the runtime type of the current instance.

(Inherited from Exception)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Creates and returns a string representation of the current exception.

(Inherited from Exception)

Events

SerializeObjectState
Obsolete.

Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception.

(Inherited from Exception)

Applies to