C# Class Nexus.Client.ModManagement.Scripting.XmlScript.Unparsers.UnsupportedScriptFeatureException

The exception that is thrown if a feature of an XML Script cannot be unparsed to the target script version.
Inheritance: System.Exception
Show file Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
UnsupportedScriptFeatureException ( ) : System

The default constructor.

UnsupportedScriptFeatureException ( string message ) : System

A simple contructor that sets the exception's message.

UnsupportedScriptFeatureException ( string message, Exception inner ) : System

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

Method Details

UnsupportedScriptFeatureException() public method

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

UnsupportedScriptFeatureException() public method

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

UnsupportedScriptFeatureException() public method

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