C# Class Nexus.Client.ModManagement.Scripting.DependencyException

An exception class that represents a dependency that was not fufilled.
Inheritance: System.ApplicationException
ファイルを表示 Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
DependencyException ( ) : System

The default constructor.

DependencyException ( string message ) : System

A simple contructor that sets the exception's message.

DependencyException ( string message, Exception inner ) : System

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

Method Details

DependencyException() public method

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

DependencyException() public method

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

DependencyException() public method

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