TypeLoadException Constructor (String)
Initializes a new instance of the TypeLoadException class with a specified error message.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- message
- Type: System::String
The message that describes the error.
The content of the message parameter should be understandable to the user. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
The following table shows the initial property values for an instance of TypeLoadException.
Property | Value |
|---|---|
A null reference (Nothing in Visual Basic). | |
The error message string. |
The following code example demonstrates the TypeLoadException(String) constructor. It contains a method that generates a TypeLoadException with a custom message, and displays the error message to the console.
using namespace System; class TypeLoadExceptionDemoClass { public: static bool GenerateException() { // Throw a TypeLoadException with custom defined message. throw gcnew TypeLoadException( "This is a custom generated TypeLoadException error message" ); } }; int main() { Console::WriteLine( "This program throws an exception upon successful run." ); Console::WriteLine( "Generating TypeLoadException with custom message..." ); try { // Generate a new instance of TypeLoadException. TypeLoadExceptionDemoClass::GenerateException(); } catch ( TypeLoadException^ e ) { Console::WriteLine( "TypeLoadException: \n\tError Message = {0}", e->Message ); } catch ( Exception^ e ) { Console::WriteLine( "Exception: \n\tError Message = {0}", e->Message ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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.