C# Class Nexus.Client.Mods.ModFormatException

The exception that is thrown if a file is not compatible with a specific mod format.
Inheritance: System.Exception
Exibir arquivo Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
ModFormatException ( ) : System

The default constructor.

ModFormatException ( IModFormat p_mftFormat ) : System

A simple contructor that sets the exception's message.

ModFormatException ( IModFormat p_mftFormat, Exception inner ) : System

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

Method Details

ModFormatException() public method

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

ModFormatException() public method

A simple contructor that sets the exception's message.
public ModFormatException ( IModFormat p_mftFormat ) : System
p_mftFormat IModFormat The expected mod format.
return System

ModFormatException() public method

A simple constructor the sets the exception's message and inner exception.
public ModFormatException ( IModFormat p_mftFormat, Exception inner ) : System
p_mftFormat IModFormat The expected mod format.
inner System.Exception The ineer exception.
return System