C# Class Nexus.Client.PluginManagement.UI.InvalidImportSourceException

The exception that is thrown when a load order import source is invalid.
Inheritance: System.Exception
显示文件 Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
InvalidImportSourceException ( string message ) : System

Initializes a new instance of the InvalidImportSourceException class with the given message.

InvalidImportSourceException ( string message, Exception innerException ) : System

Initializes a new instance of the InvalidImportSourceException class with the given message and inner exception.

Method Details

InvalidImportSourceException() public method

Initializes a new instance of the InvalidImportSourceException class with the given message.
public InvalidImportSourceException ( string message ) : System
message string The message that describes the error.
return System

InvalidImportSourceException() public method

Initializes a new instance of the InvalidImportSourceException class with the given message and inner exception.
public InvalidImportSourceException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException System.Exception The exception that is the cause of the current exception.
return System