ProcessPackageExecutableNotFoundException constructor Null safety
Creates a const ProcessPackageExecutableNotFoundException
The optional candidates are the files matching the expected executable on the searchPath.
The optional searchPath is the list of directories searched for the expected executable.
See ProcessPackageException for more information.
Implementation
const ProcessPackageExecutableNotFoundException(
String executable, {
List<String> arguments = const <String>[],
String message = "",
int errorCode = 0,
String? workingDirectory,
this.candidates = const <String>[],
this.searchPath = const <String>[],
}) : super(
executable,
arguments: arguments,
message: message,
errorCode: errorCode,
workingDirectory: workingDirectory,
);