The Win32Exception contains the following constructors:
Win32Exception(int errorcode)
Win32Exception(int errorcode, String message)
Creates a Win32Exception object initialized with an error code.
public Win32Exception(int errorcode);
errorcode | The error code. |
Creates a Win32Exception object initialized with an error code and an error description.
public Win32Exception(int errorcode, String message);
errorcode | The error code. |
message | The error description. |