Create a new exception passing a message. The message should contain information that will make it easier to debug the problem that has occurred.
Create a new exception passing a message. The message should contain information that will make it easier to debug the problem that has occurred.
public CommandLineParseException(string);
Create a new exception passing a message. The message should contain information that will make it easier to debug the problem that has occurred. In addition to the message the inner exception is passed in to preserve the stack trace.
public CommandLineParseException(string,Exception);
CommandLineParseException Class | ICSharpCode.SharpCvsLib.Console.Parser Namespace