CommandLineArgumentException(String, String, CommandLineArgumentErrorCategory, Exception) Constructor
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
public CommandLineArgumentException(
	string? message,
	string? argumentName,
	CommandLineArgumentErrorCategory category,
	Exception? inner
)
Public Sub New ( 
	message As String,
	argumentName As String,
	category As CommandLineArgumentErrorCategory,
	inner As Exception
)
Dim message As String
Dim argumentName As String
Dim category As CommandLineArgumentErrorCategory
Dim inner As Exception
Dim instance As New CommandLineArgumentException(message, 
	argumentName, category, inner)
public:
CommandLineArgumentException(
	String^ message, 
	String^ argumentName, 
	CommandLineArgumentErrorCategory category, 
	Exception^ inner
)
Parameters
- message  String
 - The error message that explains the reason for the CommandLineArgumentException.
 - argumentName  String
 - 
            The name of the argument that was invalid, or  if the error was not
            caused by a particular argument.
            
 - category  CommandLineArgumentErrorCategory
 - The category of this error.
 - inner  Exception
 - 
            The Exception that is the cause of the current CommandLineArgumentException,
            or a  if no inner Exception is specified.