C# 클래스 ZocBuild.Database.Exceptions.ExternalProcessException

An exception raised when an error occurs in an external process.
상속: System.Exception
파일 보기 프로젝트 열기: Zocdoc/ZocBuild.Database

공개 메소드들

메소드 설명
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