C# Class ZocBuild.Database.Exceptions.ExternalProcessException

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

Méthodes publiques

Méthode Description
ExternalProcessException ( string executablePath, int exitCode, string output, string error ) : System

Creates an instance of the external process exception.

Method Details

ExternalProcessException() public méthode

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.
Résultat System