C# Class ZocBuild.Database.Exceptions.ExternalProcessException

An exception raised when an error occurs in an external process.
Inheritance: System.Exception
Exibir arquivo Open project: Zocdoc/ZocBuild.Database

Public Methods

Method Description
ExternalProcessException ( string executablePath, int exitCode, string output, string error ) : System

Creates an instance of the external process exception.

Method Details

ExternalProcessException() public method

Creates an instance of the external process exception.
public ExternalProcessException ( string executablePath, int exitCode, string output, string error ) : System
executablePath string The path to the executable.
exitCode int The exit code generated by the process.
output string The content emitted to the standard output stream.
error string The content emitted to the standard error stream.
return System