Package org.gradle.process
Interface ExecResult
public interface ExecResult
Represents the result of running an external process.
- 
Method SummaryModifier and TypeMethodDescriptionThrows anExecExceptionif the process exited with a non-zero exit value.intReturns the exit value of the process.Re-throws any failure executing this process.
- 
Method Details- 
getExitValueint getExitValue()Returns the exit value of the process.
- 
assertNormalExitValueThrows anExecExceptionif the process exited with a non-zero exit value.- Returns:
- this
- Throws:
- org.gradle.process.internal.ExecException- if the process exited with a non-zero exit value
 
- 
rethrowFailureRe-throws any failure executing this process.- Returns:
- this
- Throws:
- org.gradle.process.internal.ExecException- the execution failure
 
 
-