C# Class Nexus.Client.Games.Gamebryo.PluginManagement.Sorter.SorterException

The exception that is thrown if an error occurs with SORTER.
Inheritance: System.Exception
Datei anzeigen Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
SorterException ( ) : System

The default constructor.

SorterException ( string message ) : System

A simple contructor that sets the exception's message.

SorterException ( string message, Exception inner ) : System

A simple constructor the sets the exception's message and inner exception.

Method Details

SorterException() public method

The default constructor.
public SorterException ( ) : System
return System

SorterException() public method

A simple contructor that sets the exception's message.
public SorterException ( string message ) : System
message string The exception's message.
return System

SorterException() public method

A simple constructor the sets the exception's message and inner exception.
public SorterException ( string message, Exception inner ) : System
message string The exception's message.
inner System.Exception The ineer exception.
return System