C# Class clipr.Core.ParserExit

Thrown when the parser needs to immediately exit, such as after printing usage or version information.
Inheritance: System.Exception
Datei anzeigen Open project: nemec/clipr

Public Methods

Method Description
ParserExit ( ) : System

Create a new ParserExitException with an exit code of 0.

ParserExit ( int exitCode ) : System

Create a new ParserExitException with the given exit code.

Method Details

ParserExit() public method

Create a new ParserExitException with an exit code of 0.
public ParserExit ( ) : System
return System

ParserExit() public method

Create a new ParserExitException with the given exit code.
public ParserExit ( int exitCode ) : System
exitCode int
return System