Table of Contents

Class CommandLineParseException

Namespace
Ubiquity.CommandLineParsing
Assembly
Ubiquity.CommandlineParsing.dll

Exception for errors in parsing or binding command line arguments.

[Serializable]
public class CommandLineParseException : Exception, ISerializable
Inheritance
CommandLineParseException
Implements
Inherited Members
Extension Methods

Constructors

CommandLineParseException()

Initializes a new instance of the CommandLineParseException class.

public CommandLineParseException()

CommandLineParseException(Exception, IFormatProvider, string, params object[])

Initializes a new instance of the CommandLineParseException class with a formatted message.

public CommandLineParseException(Exception inner, IFormatProvider formatProvider, string fmt, params object[] args)

Parameters

inner Exception

Inner exception to wrap.

formatProvider IFormatProvider

Format provider.

fmt string

Composition string for the message.

args object[]

Arguments fir the message.

CommandLineParseException(IFormatProvider, string, params object[])

Initializes a new instance of the CommandLineParseException class with a formatted message.

public CommandLineParseException(IFormatProvider formatProvider, string fmt, params object[] args)

Parameters

formatProvider IFormatProvider

Format provider.

fmt string

Composition string for the message.

args object[]

Arguments fir the message.

CommandLineParseException(string)

Initializes a new instance of the CommandLineParseException class.

public CommandLineParseException(string message)

Parameters

message string

Exception message.

CommandLineParseException(string, Exception)

Initializes a new instance of the CommandLineParseException class.

public CommandLineParseException(string message, Exception inner)

Parameters

message string

Message for the exception.

inner Exception

Inner exception.