|
BSL430.NET
1.2.1
|
The exception that is thrown when an attempt to load a class fails due to the absence of an entry method. More...
Public Member Functions | |
| EntryPointNotFoundException () | |
| Initializes a new instance of the EntryPointNotFoundException class. More... | |
| EntryPointNotFoundException (string message) | |
| Initializes a new instance of the EntryPointNotFoundException class. More... | |
| EntryPointNotFoundException (string message, Exception innerException) | |
| Initializes a new instance of the EntryPointNotFoundException class. More... | |
The exception that is thrown when an attempt to load a class fails due to the absence of an entry method.
This method is intended as a drop in replacement for the equivalent exception in .NET. Unfortunately, .NET Standard 1.6 and earlier do not contain this exception, even though P/Invoke on Windows certainly raises this exception.
| System.EntryPointNotFoundException.EntryPointNotFoundException | ( | ) |
Initializes a new instance of the EntryPointNotFoundException class.
| System.EntryPointNotFoundException.EntryPointNotFoundException | ( | string | message | ) |
Initializes a new instance of the EntryPointNotFoundException class.
| message | The message that describes the error. |
| System.EntryPointNotFoundException.EntryPointNotFoundException | ( | string | message, |
| Exception | innerException | ||
| ) |
Initializes a new instance of the EntryPointNotFoundException class.
| message | The error message that explains the reason for the exception. |
| innerException | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
1.8.15