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

The exception that is thrown when the path being accessed is illegal.
Inheritance: System.Exception
Afficher le fichier Open project: NexusMods/NexusModManager-4.5

Méthodes publiques

Méthode Description
IllegalFilePathException ( string p_strPath ) : System

The default constructor.

IllegalFilePathException ( string p_strPath, string message ) : System

A simple contructor that sets the exception's message.

IllegalFilePathException ( string p_strPath, string message, Exception inner ) : System

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

Method Details

IllegalFilePathException() public méthode

The default constructor.
public IllegalFilePathException ( string p_strPath ) : System
p_strPath string The illegal path.
Résultat System

IllegalFilePathException() public méthode

A simple contructor that sets the exception's message.
public IllegalFilePathException ( string p_strPath, string message ) : System
p_strPath string The illegal path.
message string The exception's message.
Résultat System

IllegalFilePathException() public méthode

A simple constructor the sets the exception's message and inner exception.
public IllegalFilePathException ( string p_strPath, string message, Exception inner ) : System
p_strPath string The illegal path.
message string The exception's message.
inner System.Exception The ineer exception.
Résultat System