C# Класс ZocBuild.Database.Exceptions.ExternalProcessException

An exception raised when an error occurs in an external process.
Наследование: System.Exception
Показать файл Открыть проект

Открытые методы

Метод Описание
ExternalProcessException ( string executablePath, int exitCode, string output, string error ) : System

Creates an instance of the external process exception.

Описание методов

ExternalProcessException() публичный Метод

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.
Результат System