TimeZoneNotFoundException Constructor (String, Exception)
Initializes a new instance of the TimeZoneNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- message
- Type: System::String
A string that describes the exception.
- innerException
- Type: System::Exception
The exception that is the cause of the current exception.
Typically, you use this TimeZoneNotFoundException overload to handle an exception in a try…catch block. The innerException parameter should be a reference to the exception object handled in the catch block, or it can be nullptr. This value is then assigned to the TimeZoneNotFoundException object's InnerException property.
The message string is assigned to the Message property. The string should be localized for the current culture.
The following example tries to retrieve a nonexistent time zone, which throws a TimeZoneNotFoundException. The exception handler wraps the exception in a new TimeZoneNotFoundException object, which the exception handler returns to the caller. The caller's exception handler then displays information about both the outer and inner exception.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.